mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-11 10:05:08 +00:00
18 lines
307 B
JavaScript
18 lines
307 B
JavaScript
import Ember from 'ember';
|
|
|
|
const {
|
|
Component
|
|
} = Ember;
|
|
|
|
export default Component.extend({
|
|
classNames: ['nacho-login-form'],
|
|
actions: {
|
|
/**
|
|
* Handle the login for submission
|
|
*/
|
|
userDidSubmit() {
|
|
// Trigger action on parent controller
|
|
this.get('onSubmit')();
|
|
}
|
|
}
|
|
}) |