Commit 283985a3 authored by Ivan Tyagov's avatar Ivan Tyagov

Disable password validity checks on a Credential Requests.

parent 0d8144ce
...@@ -58,6 +58,10 @@ class CredentialRequest(Ticket, EncryptedPasswordMixin): ...@@ -58,6 +58,10 @@ class CredentialRequest(Ticket, EncryptedPasswordMixin):
# should be able to do it # should be able to do it
pass pass
def checkPasswordValueAcceptable(self, value):
# all passwords are acceptable on Credential Request
pass
security.declareProtected(Permissions.AccessContentsInformation, security.declareProtected(Permissions.AccessContentsInformation,
'getTitle') 'getTitle')
def getTitle(self, **kw): def getTitle(self, **kw):
......
379 380
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment