mirror of
https://github.com/flarum/framework.git
synced 2024-12-03 15:43:59 +08:00
c2feae406d
- Allow dropdown-buttons to render a partial
9 lines
238 B
JavaScript
9 lines
238 B
JavaScript
import FlarumAuthorizer from '../authorizers/flarum';
|
|
|
|
export default {
|
|
name: 'authentication',
|
|
before: 'simple-auth',
|
|
initialize: function(container) {
|
|
container.register('authorizer:flarum', FlarumAuthorizer);
|
|
}
|
|
}; |