Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fsmanuel authored and marcoow committed Oct 16, 2015
1 parent 174fb96 commit 602a803
Show file tree
Hide file tree
Showing 16 changed files with 30 additions and 32 deletions.
4 changes: 2 additions & 2 deletions addon/authenticators/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ import Ember from 'ember';
```
@class Base
@namespace SimpleAuth.Authenticators
@module simple-auth/authenticators/base
@namespace Authenticators
@module ember-simple-auth/authenticators/base
@extends Ember.Object
@uses Ember.Evented
@public
Expand Down
4 changes: 2 additions & 2 deletions addon/authenticators/devise.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import Configuration from './../configuration';
`'simple-auth-authenticator:devise'` in Ember's container._
@class Devise
@namespace SimpleAuth.Authenticators
@module simple-auth-devise/authenticators/devise
@namespace Authenticators
@module authenticators/devise
@extends Base
@public
*/
Expand Down
4 changes: 2 additions & 2 deletions addon/authenticators/oauth2.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import Configuration from './../configuration';
container._
@class OAuth2
@namespace SimpleAuth.Authenticators
@module simple-auth-oauth2/authenticators/oauth2
@namespace Authenticators
@module authenticators/oauth2
@extends Base
@public
*/
Expand Down
4 changes: 2 additions & 2 deletions addon/authenticators/torii.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import Base from './base';
`'simple-auth-authenticator:torii'` in Ember's container._
@class Torii
@namespace SimpleAuth.Authenticators
@module simple-auth-torii/authenticators/torii
@namespace Authenticators
@module authenticators/torii
@extends Base
@public
*/
Expand Down
4 changes: 2 additions & 2 deletions addon/authorizers/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import Ember from 'ember';
as it relies on data that the authenticator acquires during authentication.
@class Base
@namespace SimpleAuth.Authorizers
@module simple-auth/authorizers/base
@namespace Authorizers
@module ember-simple-auth/authorizers/base
@extends Ember.Object
@public
*/
Expand Down
4 changes: 2 additions & 2 deletions addon/authorizers/devise.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import Configuration from './../configuration';
`'simple-auth-authorizer:devise'` in Ember's container._
@class Devise
@namespace SimpleAuth.Authorizers
@module simple-auth-devise/authorizers/devise
@namespace Authorizers
@module authorizers/devise
@extends Base
@public
*/
Expand Down
4 changes: 2 additions & 2 deletions addon/authorizers/oauth2.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import Base from './base';
`'simple-auth-authorizer:oauth2-bearer'` in Ember's container._
@class OAuth2
@namespace SimpleAuth.Authorizers
@module simple-auth-oauth2/authorizers/oauth2
@namespace Authorizers
@module authorizers/oauth2
@extends Base
@public
*/
Expand Down
3 changes: 1 addition & 2 deletions addon/configuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ const defaults = {
```
@class Configuration
@namespace SimpleAuth
@module simple-auth/configuration
@module ember-simple-auth/configuration
@public
*/
export default {
Expand Down
4 changes: 2 additions & 2 deletions addon/mixins/application-route-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ let routeEntryComplete = false;
```
@class ApplicationRouteMixin
@namespace SimpleAuth
@module simple-auth/mixins/application-route-mixin
@namespace Mixins
@module ember-simple-auth/mixins/application-route-mixin
@extends Ember.Mixin
@static
@public
Expand Down
4 changes: 2 additions & 2 deletions addon/mixins/authenticated-route-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import Configuration from './../configuration';
enforcement code is actually executed.
@class AuthenticatedRouteMixin
@namespace SimpleAuth
@module simple-auth/mixins/authenticated-route-mixin
@namespace Mixins
@module ember-simple-auth/mixins/authenticated-route-mixin
@extends Ember.Mixin
@static
@public
Expand Down
4 changes: 2 additions & 2 deletions addon/mixins/unauthenticated-route-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import Configuration from './../configuration';
implementation calls `this._super(transition)`__.
@class UnauthenticatedRouteMixin
@namespace SimpleAuth
@module simple-auth/mixins/unauthenticated-route-mixin
@namespace Mixins
@module ember-simple-auth/mixins/unauthenticated-route-mixin
@extends Ember.Mixin
@static
@public
Expand Down
3 changes: 1 addition & 2 deletions addon/session.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ import Ember from 'ember';
end [`Stores.Base`](#SimpleAuth-Stores-Base)).
@class Session
@namespace SimpleAuth
@module simple-auth/session
@module ember-simple-auth/session
@extends Ember.ObjectProxy
@uses Ember.Evented
@public
Expand Down
4 changes: 2 additions & 2 deletions addon/stores/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import Ember from 'ember';
```
@class Base
@namespace SimpleAuth.Stores
@module simple-auth/stores/base
@namespace Stores
@module ember-simple-auth/stores/base
@extends Ember.Object
@uses Ember.Evented
@public
Expand Down
4 changes: 2 additions & 2 deletions addon/stores/cookie.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ import Configuration from './../configuration';
`'simple-auth-session-store:cookie'` in Ember's container._
@class Cookie
@namespace SimpleAuth.Stores
@module simple-auth-cookie-store/stores/cookie
@namespace Stores
@module stores/cookie
@extends Stores.Base
@public
*/
Expand Down
4 changes: 2 additions & 2 deletions addon/stores/ephemeral.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import Base from './base';
`'session-store:ephemeral'` in Ember's container._
@class Ephemeral
@namespace SimpleAuth.Stores
@module simple-auth/stores/ephemeral
@namespace Stores
@module stores/ephemeral
@extends Stores.Base
@public
*/
Expand Down
4 changes: 2 additions & 2 deletions addon/stores/local-storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import Configuration from '../configuration';
__`Stores.LocalStorage` is Ember Simple Auth's default store.__
@class LocalStorage
@namespace SimpleAuth.Stores
@module simple-auth/stores/local-storage
@namespace Stores
@module stores/local-storage
@extends Stores.Base
@public
*/
Expand Down

0 comments on commit 602a803

Please sign in to comment.