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
/** @module app/authenticators/application */ | |
import Ember from 'ember'; | |
import OAuth2PasswordGrant from 'ember-simple-auth/authenticators/oauth2-password-grant'; | |
const { isEmpty, RSVP, run, assign } = Ember; | |
/** need ember-browserify */ | |
import UUID from 'npm:node-uuid'; | |
const refreshTokenTabKey = 'refresh-token-tab'; | |
const shouldInvalidateRefreshTokenTabKey = 'should-invalidate-refresh-token-tab'; |
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
@Retention(RetentionPolicy.RUNTIME) | |
@Target(ElementType.FIELD) | |
public @interface IdentityColumn {} | |
public class MyRushObject extends RushObject { | |
@RushIgnore | |
public transient boolean _didRegisterObjectId = false; | |
@RushIgnore | |
private transient String _identityValue; |
NewerOlder