This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/users/requestlockouthelp/controller.js
2015-11-10 09:22:35 -07:00

24 lines
628 B
JavaScript

import Ember from 'ember';
import ajaxRequest from '../../../utils/ajax-request';
const { Controller, inject: { service } } = Ember;
export default Controller.extend({
session: service(),
globals: service(),
actions: {
submit: function(email) {
const url = `${this.get('globals.apiURL')}/api/${this.get('globals.genus')}/users/lockout`;
const options = {
method: 'POST',
data: { email: email },
};
ajaxRequest(url, options, this.get('session'));
this.transitionToRoute('login');
this.get('flashMessages').information('Please check your email');
},
},
});