fix user status being strings

pull/2687/head
Mihail Maxacov 10 years ago
parent e676be5283
commit 2f35055103
  1. 2
      frontend/app/work_packages/helpers/index.js

@ -29,7 +29,7 @@
angular.module('openproject.workPackages.helpers')
.factory('ApiHelper', require('./api-helper'))
.factory('FiltersHelper', ['I18n', require('./filters-helper')])
.constant('ACTIVE_USER_STATUSES', [1, 2])
.constant('ACTIVE_USER_STATUSES', ['active', 'registered'])
.factory('UsersHelper', ['ACTIVE_USER_STATUSES', require('./users-helper')])
.constant('PERMITTED_BULK_ACTIONS', ['edit', 'watch', 'move', 'copy',
'delete'

Loading…
Cancel
Save