ScriptsRoutesConfig.js revision 05cc24ca0f70609cfc040c5256838958f17ee32b
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington/**
5ec701c9f8ccc403ee6fd3e41239df7dcd9faddeBruno Lavit * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington *
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * Copyright (c) 2015 ForgeRock AS. All Rights Reserved
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington *
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * The contents of this file are subject to the terms
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * of the Common Development and Distribution License
1c39f25b4e11ae0397f825f3d031bd01983b98f0Bruno Lavit * (the License). You may not use this file except in
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * compliance with the License.
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington *
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * You can obtain a copy of the License at
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * http://forgerock.org/license/CDDLv1.0.html
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * See the License for the specific language governing
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * permission and limitations under the License.
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington *
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * When distributing Covered Code, include this CDDL
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * Header Notice in each file and include the License file
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * at http://forgerock.org/license/CDDLv1.0.html
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * If applicable, add the following below the CDDL Header,
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * with the fields enclosed by brackets [] replaced by
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * your own identifying information:
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington * "Portions Copyrighted [year] [name of copyright owner]"
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington */
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington
71b128a7314b40bf2b9740cfa80f6cdba76740e8Phill Cunnington/*global define*/
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunningtondefine("config/routes/ScriptsRoutesConfig", [], function () {
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington return {
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington "listScripts": {
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington view: "org/forgerock/openam/ui/editor/ScriptListView",
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington url: "list",
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington role: "ui-admin"
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington }
73c26b2cdf320b53fe8467cc81228e04e3c540c0Phill Cunnington };
87e1cbcd02820f55e1816ee4efe9e9127be22a11James Phillpotts});