View | Details | Raw Unified | Return to bug 41695
Collapse All | Expand All

(-)a/saml/univention-saml/modules/univention/admin/handlers/saml/serviceprovider.py (-9 / +9 lines)
Lines 75-81 Link Here
75
			options = [],
75
			options = [],
76
			required = True,
76
			required = True,
77
			may_change = True,
77
			may_change = True,
78
			identifies = True,
78
			identifies = False,
79
		),
79
		),
80
	'NameIDFormat': univention.admin.property(
80
	'NameIDFormat': univention.admin.property(
81
			short_description = _(u'Format of NameID attribute'),
81
			short_description = _(u'Format of NameID attribute'),
Lines 85-91 Link Here
85
			options = [],
85
			options = [],
86
			required = False,
86
			required = False,
87
			may_change = True,
87
			may_change = True,
88
			identifies = True,
88
			identifies = False,
89
		),
89
		),
90
	'simplesamlNameIDAttribute': univention.admin.property(
90
	'simplesamlNameIDAttribute': univention.admin.property(
91
			short_description = _(u'Name of the attribute that is used as NameID'),
91
			short_description = _(u'Name of the attribute that is used as NameID'),
Lines 95-101 Link Here
95
			options = [],
95
			options = [],
96
			required = False,
96
			required = False,
97
			may_change = True,
97
			may_change = True,
98
			identifies = True,
98
			identifies = False,
99
			default = "uid"
99
			default = "uid"
100
		),
100
		),
101
	'simplesamlAttributes': univention.admin.property(
101
	'simplesamlAttributes': univention.admin.property(
Lines 117-123 Link Here
117
			options = [],
117
			options = [],
118
			required = False,
118
			required = False,
119
			may_change = True,
119
			may_change = True,
120
			identifies = True,
120
			identifies = False,
121
		),
121
		),
122
	'serviceproviderdescription': univention.admin.property(
122
	'serviceproviderdescription': univention.admin.property(
123
			short_description = _(u'Description of this service provider'),
123
			short_description = _(u'Description of this service provider'),
Lines 127-133 Link Here
127
			options = [],
127
			options = [],
128
			required = False,
128
			required = False,
129
			may_change = True,
129
			may_change = True,
130
			identifies = True,
130
			identifies = False,
131
		),
131
		),
132
	'serviceProviderOrganizationName': univention.admin.property(
132
	'serviceProviderOrganizationName': univention.admin.property(
133
			short_description = _(u'Name of the organization for this service provider'),
133
			short_description = _(u'Name of the organization for this service provider'),
Lines 137-143 Link Here
137
			options = [],
137
			options = [],
138
			required = False,
138
			required = False,
139
			may_change = True,
139
			may_change = True,
140
			identifies = True,
140
			identifies = False,
141
		),
141
		),
142
	'privacypolicyURL': univention.admin.property(
142
	'privacypolicyURL': univention.admin.property(
143
			short_description = _(u'URL to the service provider\'s privacy policy'),
143
			short_description = _(u'URL to the service provider\'s privacy policy'),
Lines 147-153 Link Here
147
			options = [],
147
			options = [],
148
			required = False,
148
			required = False,
149
			may_change = True,
149
			may_change = True,
150
			identifies = True,
150
			identifies = False,
151
		),
151
		),
152
	'attributesNameFormat': univention.admin.property(
152
	'attributesNameFormat': univention.admin.property(
153
			short_description = _(u'Value for attribute format field'),
153
			short_description = _(u'Value for attribute format field'),
Lines 157-163 Link Here
157
			options = [],
157
			options = [],
158
			required = False,
158
			required = False,
159
			may_change = True,
159
			may_change = True,
160
			identifies = True,
160
			identifies = False,
161
		),
161
		),
162
	'singleLogoutService': univention.admin.property(
162
	'singleLogoutService': univention.admin.property(
163
			short_description = _(u'Single logout URL for this service provider'),
163
			short_description = _(u'Single logout URL for this service provider'),
Lines 167-173 Link Here
167
			options = [],
167
			options = [],
168
			required = False,
168
			required = False,
169
			may_change = True,
169
			may_change = True,
170
			identifies = True,
170
			identifies = False,
171
		),
171
		),
172
	'serviceProviderMetadata': univention.admin.property(
172
	'serviceProviderMetadata': univention.admin.property(
173
			short_description=_('XML metadata'),
173
			short_description=_('XML metadata'),

Return to bug 41695