diff options
author | 2021-04-21 18:22:31 +0200 | |
---|---|---|
committer | 2021-04-21 18:22:31 +0200 | |
commit | 9616f46424363adbc124da52c6728ca047506403 (patch) | |
tree | ff42bcf78a846e694e9f5716fc2b9ce7055593e9 /internal/apimodule/auth/auth.go | |
parent | linting + organizing (diff) | |
download | gotosocial-9616f46424363adbc124da52c6728ca047506403.tar.xz |
make boosts work woo (#12)
Diffstat (limited to 'internal/apimodule/auth/auth.go')
-rw-r--r-- | internal/apimodule/auth/auth.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/apimodule/auth/auth.go b/internal/apimodule/auth/auth.go index 341805b40..0a6788c37 100644 --- a/internal/apimodule/auth/auth.go +++ b/internal/apimodule/auth/auth.go @@ -32,9 +32,9 @@ import ( const ( // AuthSignInPath is the API path for users to sign in through - AuthSignInPath = "/auth/sign_in" + AuthSignInPath = "/auth/sign_in" // OauthTokenPath is the API path to use for granting token requests to users with valid credentials - OauthTokenPath = "/oauth/token" + OauthTokenPath = "/oauth/token" // OauthAuthorizePath is the API path for authorization requests (eg., authorize this app to act on my behalf as a user) OauthAuthorizePath = "/oauth/authorize" ) |