mirror of
https://github.com/kemko/nomad.git
synced 2026-01-01 16:05:42 +03:00
Adds Namespace UI to Access Control - Also adds two step buttons to other Access Control pages --------- Co-authored-by: Phil Renaud <phil@riotindustries.com>
19 lines
370 B
JavaScript
19 lines
370 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Inflector from 'ember-inflector';
|
|
|
|
export function initialize() {
|
|
const inflector = Inflector.inflector;
|
|
|
|
// Tell the inflector that the plural of "quota" is "quotas"
|
|
inflector.irregular('quota', 'quotas');
|
|
}
|
|
|
|
export default {
|
|
name: 'custom-inflector-rules',
|
|
initialize,
|
|
};
|