updated version number, format fix for file

This commit is contained in:
Ro 2020-10-01 14:10:26 -07:00
parent ca481d2b91
commit 1d7f4a20f7
3 changed files with 1464 additions and 1008 deletions

2445
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ {
"name": "fipamo-development", "name": "fipamo-development",
"version": "1.2.3", "version": "1.2.4",
"private": true, "private": true,
"description": "The most chill blog framework ever.", "description": "The most chill blog framework ever.",
"repository": "https://code.playvicio.us/Are0h/Fipamo", "repository": "https://code.playvicio.us/Are0h/Fipamo",

View file

@ -1,4 +1,4 @@
export const MEMBER_STATUS = "memberStatus"; export const MEMBER_STATUS = 'memberStatus';
export const LOGIN_STATUS = 'loginStatus'; export const LOGIN_STATUS = 'loginStatus';
export const SUPPORTER_FOUND = 'SUPPORTER FOUND'; export const SUPPORTER_FOUND = 'SUPPORTER FOUND';
export const SUPPORTER_LISTED = 'SUPPORTER LISTED'; export const SUPPORTER_LISTED = 'SUPPORTER LISTED';
@ -10,19 +10,12 @@ export const MEMBER_LOGIN_LAME = 'MEMBER LOGIN LAME';
export const MEMBER_EXISTS = 'USER ALREADY EXISTS'; export const MEMBER_EXISTS = 'USER ALREADY EXISTS';
export const MEMBER_LOGIN_MISSING = 'Missing credentials'; export const MEMBER_LOGIN_MISSING = 'Missing credentials';
class AuthEvent {
//--------------------------
class AuthEvent // methods
{ //--------------------------
//--------------------------
//-------------------------- // event handlers
// methods //--------------------------
//--------------------------
//--------------------------
// event handlers
//--------------------------
} }
export default new AuthEvent export default new AuthEvent();