mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-14 11:36:59 +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')();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|