add /blogs/{blogID} and /blogs/lookup/{blogName} routes
This commit is contained in:
parent
dfc116d828
commit
dd72a1f4c1
5 changed files with 104 additions and 1 deletions
|
@ -53,6 +53,8 @@ const (
|
|||
// Controls whether tokens have access to sensitive account data, NOT if they can use `/accounts/@me` endpoints.
|
||||
TokenScopeAccountsMe TokenScope = "accounts.me"
|
||||
TokenScopeAccountsWrite TokenScope = "accounts.write"
|
||||
TokenScopeBlogsRead TokenScope = "blogs.read"
|
||||
TokenScopeBlogsWrite TokenScope = "blogs.write"
|
||||
)
|
||||
|
||||
func (s TokenScope) IsValid() bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue