environment.ts
1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
namespace noosfero {
/**
* @ngdoc interface
* @name noofero.Environment
* @description
* A representation of a Noosfero Environment.
*/
export interface Environment extends RestModel {
/**
* @ngdoc property
* @name id
* @propertyOf noofero.Environment
* @returns {number} The Environment id
*/
id: number;
settings: any
/**
* @ngdoc property
* @name layout_template
* @propertyOf noofero.Environment
* @returns {string} The Environment layout (e.g. default, rightbar)
*/
layout_template: string;
/**
* @ngdoc property
* @name signup_intro
* @propertyOf noofero.Environment
* @returns {string} The Environment signup introduction HTML (e.g. Welcome to Noosfero...!!)
*/
signup_intro: string;
/**
* @ngdoc property
* @name host
* @propertyOf noofero.Environment
* @returns {string} The Environment default domain address with 'http://' prefix (e.g. http://localhost)
*/
host: string;
}
}