-
- [ ] implement basic routing on server
- [ ] ensure root path is not route-protected
- [ ] determine route-protection method for acct-required routes
-
with express we could do somthing like
`routes.all('/protected/*', ensureAuthenticated, function (req, res) {
});`
how can we achieve this in director?
-
Hello, I've cloned this repo and managed to run it, but I'm facing problems regarding client-side protected routes and role-based authentication. Please help me resolve these issues.
-
I am creating a backend of my app using laravel with jwt aunthetication and i keep getting this error "user not found" whenever i send a get request to my auntheticated route, i did not change the cus…
-
## Issue Type: feature
## Description:
- Implement logic for Protected Routing
- Only routes that user can visit without logging in are /home,/aboutus,/contactus,/login,/signup.
- Rest of the ro…
-
**Error**
`Could not find "store" in either the context or props of "Connect(GatedPage)". Either wrap the root component in a , or explicitly pass "store" as a prop to "Connect(GatedPage)".`
*…
-
I have token-based authentication in my app. I have a socket route that does the actual token validation, but I am wondering how I would require some routes be protected by authorization. Let me clari…
-
The Chicago Data Portal has a shapefile for Bike Routes:
https://data.cityofchicago.org/Transportation/Bike-Routes/3w5d-sru8
IDOT may have a more comprehensive shapefile that would be able to dist…
-
### On which framework/platform would you like to see this feature implemented?
React
### Which UI component is this feature-request for?
Authenticator
### Please describe your feature-req…
-
I have a bunch of routes I'd like to protect with some authentication and authorization (and a few routes that are public.)
Currently I have something like this:
```
get '/api/one' => sub {
…