mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-09 23:20:27 +00:00
replaced non-existent method with code that checks whether user has rights on the domain at hand
This commit is contained in:
parent
675a502bcb
commit
620b0b55e8
@ -366,8 +366,11 @@ class User(db.Model):
|
||||
if self.role.name == "Administrator":
|
||||
return True
|
||||
|
||||
query = self.get_domain_query().filter(Domain.name == domain_name)
|
||||
return query.count() >= 1
|
||||
query = db.session.query(User, DomainUser, Domain).filter(User.id==self.id).filter(User.id==DomainUser.user_id).filter(Domain.id==DomainUser.domain_id).all()
|
||||
for q in query:
|
||||
if q[2].name == domain_name:
|
||||
return True
|
||||
return False
|
||||
|
||||
def delete(self):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user