Skip to content
This repository was archived by the owner on Sep 19, 2022. It is now read-only.

Commit 0bd11f6

Browse files
Merge pull request #42 from BaranekD/ListOfSps
Changed design of ListOfSps
2 parents 06c1359 + c3edeaa commit 0bd11f6

File tree

7 files changed

+468
-131
lines changed

7 files changed

+468
-131
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
5+
[Changed]
6+
- Changed design of ListOfSps
57

68
## [v2.0.0]
79
[Added]
Lines changed: 42 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,47 @@
11
<?php
2-
32
$config = array(
3+
/*
4+
* Unique identifier of proxy
5+
*/
46
'proxyIdentifier' => '',
7+
8+
/*
9+
* If true, page shows list of SAML2 and OIDC services. If false page shows only SAML2 services
10+
*/
11+
'showOIDCServices' => true,
12+
13+
/*
14+
* Attribute name for facility attribute proxy identifiers
15+
*/
516
'perunProxyIdentifierAttr' => '',
6-
'attributesDefinitions' => array(
7-
'perunAttrName'
8-
),
17+
18+
/*
19+
* Attribute name for facility attribute with loginUrL for service
20+
*/
21+
'loginUrLAttr' => '',
22+
23+
/*
24+
* Attribute name for facility attribute with information, if service is in test environment
25+
*/
26+
'isTestSpAttr' => '',
27+
28+
/*
29+
* Attribute name for facility attribute with information, if facility may be shown on service list or not
30+
*/
31+
'showOnServiceListAttr' => '',
32+
33+
/*
34+
* Attribute name for facility attribute with service EntityId
35+
*/
36+
'SAML2EntityIdAttr' => '',
37+
38+
/*
39+
* Attribute name for facility attribute with service OIDC ClientId
40+
*/
41+
'OIDCClientIdAttr' => '',
42+
43+
/*
44+
* Array of attribute names for facility attributes shown in table
45+
*/
46+
'attributesDefinitions' => array(),
947
);
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"statistics": {
3+
"en": "Statistics"
4+
},
5+
"production_services": {
6+
"en": "Production services"
7+
},
8+
"test_services": {
9+
"en": "Test services"
10+
},
11+
"all": {
12+
"en": "All"
13+
},
14+
"saml": {
15+
"en": "SAML"
16+
},
17+
"oidc": {
18+
"en": "OIDC"
19+
},
20+
"name": {
21+
"en": "Name"
22+
},
23+
"description": {
24+
"en": "Description"
25+
},
26+
"authenticate_protocol": {
27+
"en": "Authenticate protocol"
28+
},
29+
"services": {
30+
"en": "Services"
31+
},
32+
"saml_production": {
33+
"en": "SAML Production"
34+
},
35+
"saml_test": {
36+
"en": "SAML Test"
37+
},
38+
"oidc_production": {
39+
"en": "OIDC Production"
40+
},
41+
"oidc_test": {
42+
"en": "OIDC Test"
43+
}
44+
}

dictionaries/perun.definition.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,5 @@
8282
"unauthorized-access_redirect_to_registration": {
8383
"en": "Now you will be redirected to registration to Perun system.",
8484
"cs": "Nyní budete přesměrování na registraci do systému Perun."
85-
},
86-
"listOfSps_header": {
87-
"en": "List of Service providers",
88-
"cs": "Seznam služeb"
8985
}
9086
}

0 commit comments

Comments
 (0)