Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate Torii authenticator #2352

Merged
merged 1 commit into from
Dec 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion packages/ember-simple-auth/addon/authenticators/torii.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
import RSVP from 'rsvp';
import { assert } from '@ember/debug';
import { assert, deprecate } from '@ember/debug';
import { isPresent, isEmpty } from '@ember/utils';
import { assign as emberAssign } from '@ember/polyfills';
import BaseAuthenticator from './base';

deprecate('Ember Simple Auth: The Torii authenticator is deprecated.', false, {
id: 'ember-simple-auth.authenticators.torii',
until: '5.0.0',
for: 'ember-simple-auth',
since: {
enabled: '4.2.0'
}
});

/**
Authenticator that wraps the
[Torii library](https:/Vestorly/torii) and thus allows to connect
Expand All @@ -24,6 +33,7 @@ import BaseAuthenticator from './base';
```

@class ToriiAuthenticator
@deprecated Implement an authenticator that wraps Torii in application code instead
@module ember-simple-auth/authenticators/torii
@extends BaseAuthenticator
@public
Expand Down