possibility to limit PT delivery by service

This commit is contained in:
Valentin Samir
2015-05-28 15:26:46 +02:00
parent 5ebc5169c3
commit 4fd4afd9c0
6 changed files with 121 additions and 68 deletions

View File

@ -144,8 +144,12 @@ class ServicePattern(models.Model):
proxy = models.BooleanField(
default=False,
verbose_name=_(u"proxy"),
help_text=_("A ProxyGrantingTicket can be delivered to the service " \
"in order to authenticate for the user on a backend service")
help_text=_("Proxy tickets can be delivered to the service")
)
proxy_callback = models.BooleanField(
default=False,
verbose_name=_(u"proxy callback"),
help_text=_("can be used as a proxy callback to deliver PGT")
)
single_log_out = models.BooleanField(
default=False,