summaryrefslogtreecommitdiff
path: root/web-ui/test/features.js
blob: 83d567d826b30695f5603c352193092086eb5f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
define([], function() {
  'use strict';
  return {
    isEnabled: function(featureName) {
      return true;
    },
    isLogoutEnabled: function() {
      return true;
    },
    getLogoutUrl: function() {
      return '/test/logout/url';
    },
    isAutoRefreshEnabled: function() {
      return true;
    }
  };
});