mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
80 lines
2.4 KiB
JavaScript
80 lines
2.4 KiB
JavaScript
"use strict";
|
|
/*!
|
|
* @license
|
|
* Copyright 2016 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var task_list_1 = require("../task-list");
|
|
exports.nonDeployedApps = [new task_list_1.AppDefinitionRepresentationModel({
|
|
id: '1',
|
|
name: '1',
|
|
icon: 'icon1'
|
|
}), new task_list_1.AppDefinitionRepresentationModel({
|
|
id: '1',
|
|
name: '2',
|
|
icon: 'icon2'
|
|
}), new task_list_1.AppDefinitionRepresentationModel({
|
|
id: '1',
|
|
name: '3',
|
|
icon: 'icon3'
|
|
})];
|
|
exports.deployedApps = [new task_list_1.AppDefinitionRepresentationModel({
|
|
id: 1,
|
|
name: 'App1',
|
|
icon: 'icon1',
|
|
deploymentId: '1',
|
|
defaultAppId: 'fake-app-1',
|
|
modelId: null,
|
|
tenantId: null
|
|
}), new task_list_1.AppDefinitionRepresentationModel({
|
|
id: 2,
|
|
name: 'App2',
|
|
icon: 'icon2',
|
|
deploymentId: '2',
|
|
modelId: null,
|
|
tenantId: null
|
|
}), new task_list_1.AppDefinitionRepresentationModel({
|
|
id: 3,
|
|
name: 'App3',
|
|
icon: 'icon3',
|
|
deploymentId: '3',
|
|
modelId: null,
|
|
tenantId: null
|
|
}), new task_list_1.AppDefinitionRepresentationModel({
|
|
id: 4,
|
|
name: 'App4',
|
|
icon: 'icon4',
|
|
deploymentId: '4',
|
|
modelId: 65,
|
|
tenantId: null
|
|
}), new task_list_1.AppDefinitionRepresentationModel({
|
|
id: 5,
|
|
name: 'App5',
|
|
icon: 'icon5',
|
|
deploymentId: '5',
|
|
modelId: 66,
|
|
tenantId: 9
|
|
}), new task_list_1.AppDefinitionRepresentationModel({
|
|
id: 6,
|
|
name: 'App6',
|
|
icon: 'icon6',
|
|
deploymentId: '6',
|
|
tenantId: 9,
|
|
modelId: 66
|
|
})];
|
|
exports.defaultApp = [new task_list_1.AppDefinitionRepresentationModel({
|
|
defaultAppId: 'tasks'
|
|
})];
|