1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 10:39:25 +02:00
OpenSTF/res/auth/mock/scripts/signin/index.js
Gunther Brunner 97ba9a2ec0 Use webpack instead of require.js for MOCK authentication.
Removing Japanese hardcoded strings (Needs gettext loading code).
2015-06-30 20:06:38 +09:00

10 lines
278 B
JavaScript

require('./signin.css')
module.exports = angular.module('stf.signin', [])
.config(function ($routeProvider) {
$routeProvider
.when('/auth/mock/', {
template: require('./signin.jade')
})
})
.controller('SignInCtrl', require('./signin-controller'))