GenieAuthentication.jl
GenieAuthentication.jl copied to clipboard
Authentication plugin for Genie framework
This is merely a cosmetic PR that introduces a const for a session key (`PARAMS_SESSION_KEY`). The motivation is to have it all set and changed from one place, aligning more...
I can't do this: ``` module AdminController using GenieAuthentication, Genie.Renderer, Genie.Exceptions, Genie.Renderer.Html function index() authenticated!() # h1("Welcome Admin") |> html current_user().name end end ``` But in a routes.jl file I...
One way (suggested by @essenciary [here](https://gitter.im/essenciary/Genie.jl)) would be to include the original URL as an optional param like `redirect("login?original_page=/users/10/delete")` or `redirect(:show_login; extra_query = Dict("original_page" => "/users/10/delete")` I also wondered if...
This pull request changes the compat entry for the `Genie` package from `3, 4` to `3, 4, 5`. This keeps the compat entries for earlier versions. Note: I have not...
From https://github.com/GenieFramework/Genie.jl/issues/540 Ref: https://portswigger.net/web-security/csrf/tokens
You're receiving this pull request because the now-deprecated [Julia TagBot GitHub App](https://github.com/apps/julia-tagbot) is installed for this repository. This pull request installs [TagBot as a GitHub Action](https://github.com/marketplace/actions/julia-tagbot). If this PR does...
Hello, Is there a way to let users sign out? Thank you!