This website requires JavaScript.
Explore
Help
Register
Sign In
github-mirror
/
BookStack
Watch
2
Star
0
Fork
0
You've already forked BookStack
mirror of
https://github.com/BookStackApp/BookStack.git
synced
2024-11-24 06:10:08 +08:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
9a3e1490ff
BookStack
/
app
/
Exceptions
/
ApiAuthException.php
7 lines
97 B
PHP
Raw
Normal View
History
Unescape
Escape
Extracted API auth into guard Also implemented more elegant solution to allowing session auth for API routes; A new 'StartSessionIfCookieExists' middleware, which wraps the default 'StartSession' middleware will run for API routes which only sets up the session if a session cookie is found on the request. Also decrypts only the session cookie. Also cleaned some TokenController codeclimate warnings.
2019-12-30 22:51:28 +08:00
<
?
php
namespace
BookStack\Exceptions
;
Added API listing filtering & cleaned ApiAuthenticate returns API listing endpoint filter can be found via &filter[name]=my+book query parameters. There are a range of operators that can be used such as &filter[id:gte]=4
2020-01-02 00:33:47 +08:00
class
ApiAuthException
extends
UnauthorizedException
{
Extracted API auth into guard Also implemented more elegant solution to allowing session auth for API routes; A new 'StartSessionIfCookieExists' middleware, which wraps the default 'StartSession' middleware will run for API routes which only sets up the session if a session cookie is found on the request. Also decrypts only the session cookie. Also cleaned some TokenController codeclimate warnings.
2019-12-30 22:51:28 +08:00
}
Reference in New Issue
Copy Permalink