Skip to content

Commit 13deeb8

Browse files
committed
More on demo gif
1 parent d2c407d commit 13deeb8

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<h1 align="center">sauron</h1>
66

77
<p align="center">
8-
A terminal UI dashboard for monitoring your GitHub repositories.
8+
A terminal UI for your GitHub repositories.
99
<br />
1010
Issues, pull requests, workflow runs, branches, and notifications — all in one place.
1111
</p>

app/Main.hs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,11 @@ buildBaseContext eventChan = do
253253

254254
maybe authenticateWithGitHub pure maybeAuth
255255

256-
putStrLn [i|Got auth: #{auth}|]
256+
case auth of
257+
BasicAuth {} -> putStrLn "Got basic auth"
258+
OAuth {} -> putStrLn "Got OAuth auth"
259+
JWT {} -> putStrLn "Got JWT auth"
260+
EnterpriseOAuth {} -> putStrLn "Got enterprise OAuth auth"
257261

258262
debugFn <- case cliDebugFile of
259263
Nothing -> return $ const $ return ()

demo.gif

75.4 KB
Loading

0 commit comments

Comments
 (0)