This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { gun } from './gun.service'; | |
| export const STATUS_SUCCESS = 'success'; | |
| export const STATUS_ERROR = 'error'; | |
| const ACTION_CREATE = 'create'; | |
| const ACTION_AUTH = 'auth'; | |
| const SESSION_KEY_USERNAME = 'rt_username'; | |
| const SESSION_KEY_PASSWORD = 'rt_password'; | |
| export interface Credentials { | |
| username: string; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { gun } from './gun.service'; | |
| export const STATUS_SUCCESS = 'success'; | |
| export const STATUS_ERROR = 'error'; | |
| const ACTION_CREATE = 'create'; | |
| const ACTION_AUTH = 'auth'; | |
| const SESSION_KEY_USERNAME = 'rt_username'; | |
| const SESSION_KEY_PASSWORD = 'rt_password'; | |
| export interface Credentials { | |
| username: string; |
OlderNewer