[#174] LDAP users should not be able to change password

This commit is contained in:
Oliver Gorwits
2015-01-25 09:58:19 +00:00
parent bd029bcdb1
commit e03cb75729
2 changed files with 4 additions and 0 deletions

View File

@@ -16,6 +16,9 @@ __PACKAGE__->result_source_instance->view_definition(<<ENDSQL
UNION
SELECT username, 'admin' AS role FROM users
WHERE admin
UNION
SELECT username, 'ldap' AS role FROM users
WHERE ldap
ENDSQL
);