forked from AkkomaGang/akkoma-fe
comments
This commit is contained in:
parent
af75c6d1ea
commit
6cd4546873
1 changed files with 7 additions and 0 deletions
|
@ -2,7 +2,14 @@ const oauth = {
|
||||||
state: {
|
state: {
|
||||||
clientId: false,
|
clientId: false,
|
||||||
clientSecret: false,
|
clientSecret: false,
|
||||||
|
/* App token is authentication for app without any user, used mostly for
|
||||||
|
* MastoAPI's registration of new users, stored so that we can fall back to
|
||||||
|
* it on logout
|
||||||
|
*/
|
||||||
appToken: false,
|
appToken: false,
|
||||||
|
/* User token is authentication for app with user, this is for every calls
|
||||||
|
* that need authorized user to be successful (i.e. posting, liking etc)
|
||||||
|
*/
|
||||||
userToken: false
|
userToken: false
|
||||||
},
|
},
|
||||||
mutations: {
|
mutations: {
|
||||||
|
|
Loading…
Reference in a new issue