mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 00:23:25 +02:00
* fix bug on email separator Signed-off-by: Denis barbaron <denis.barbaron@orange.com> * allow group name change Signed-off-by: Denis barbaron <denis.barbaron@orange.com> * add maintenance banner on UI Signed-off-by: Denis barbaron <denis.barbaron@orange.com> * removes unnecessary comments Signed-off-by: Denis barbaron <denis.barbaron@orange.com> --------- Signed-off-by: Denis barbaron <denis.barbaron@orange.com>
15 lines
496 B
JavaScript
15 lines
496 B
JavaScript
/**
|
|
* Copyright © 2024 code initially contributed by Orange SA, authors: Denis Barbaron - Licensed under the Apache license 2.0
|
|
**/
|
|
|
|
module.exports = angular.module('stf.settings.general.alert-message', [
|
|
require('stf/settings').name
|
|
])
|
|
.run(['$templateCache', function($templateCache) {
|
|
$templateCache.put(
|
|
'settings/general/alert-message/alert-message.pug'
|
|
, require('./alert-message.pug')
|
|
)
|
|
}])
|
|
.controller('AlertMessageCtrl', require('./alert-message-controller'))
|