Skip to content

Instantly share code, notes, and snippets.

@Hc747
Created August 15, 2018 14:14
Show Gist options
  • Save Hc747/c83332c5ed61074966aafc9446d2966f to your computer and use it in GitHub Desktop.
Save Hc747/c83332c5ed61074966aafc9446d2966f to your computer and use it in GitHub Desktop.
export default class User {
constructor(username, email, password_hash, session_token) {
this.username = username;
this.email = email;
this.password_hash = password_hash;
this.session_token = session_token;
}
isAuthenticated() {
return !!this.session_token;
}
}
const initialState = {
principal: new User('Guest', null, null, null)
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment