Import login route from default theme

This commit is contained in:
2021-05-11 17:57:29 +02:00
parent 1b683d7b77
commit b2a1369038
6 changed files with 156 additions and 9 deletions

View File

@ -0,0 +1,16 @@
/**
* Account helper
*
* @author Pierre Hubert
*/
export class AccountHelper {
/**
* Check whether access token are available
* or not
*/
static get hasAccessToken() : boolean {
// TODO : implement support
return false;
}
}