diff options
author | Ben Sima <ben@bsima.me> | 2023-08-14 20:48:10 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-08-16 14:29:43 -0400 |
commit | 2d8b280ed2c73d65fb905a580e9499bb7f69ff01 (patch) | |
tree | f9511f59603cd5128eaa3e47f6e90dd382afc9e8 /Biz/Auth.hs | |
parent | 1fd4c0be9efe017ed9f6f1dd9b5d9ab70b1bcee2 (diff) |
Run lint
Idk why these missed the linter. Probably packages updated in the
nixpkgs version bump.
Diffstat (limited to 'Biz/Auth.hs')
-rw-r--r-- | Biz/Auth.hs | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Biz/Auth.hs b/Biz/Auth.hs index 14f67ec..9eb81a8 100644 --- a/Biz/Auth.hs +++ b/Biz/Auth.hs @@ -131,7 +131,11 @@ githubOauth (GitHub OAuthArgs {..}) code = (Req.https "github.com" /: "login" /: "oauth" /: "access_token") Req.NoReqBody Req.jsonResponse - <| "client_id" =: clientId - <> "client_secret" =: clientSecret - <> "code" =: code - <> "state" =: clientState + <| "client_id" + =: clientId + <> "client_secret" + =: clientSecret + <> "code" + =: code + <> "state" + =: clientState |