blob: 29c6d87daad9507c649ce3f8818fc211e0806ba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
define([], function() {
'use strict';
return {
isEnabled: function(featureName) {
return true;
},
isLogoutEnabled: function() {
return true;
},
getLogoutUrl: function() {
return '/test/logout/url';
}
};
});
|