Redirect CCPO user to requests page

This commit is contained in:
richard-dds
2018-09-18 11:08:19 -04:00
parent 955a735f96
commit 4ab73cc06b
3 changed files with 23 additions and 2 deletions

View File

@@ -26,6 +26,10 @@ class User(Base):
def atat_permissions(self):
return self.atat_role.permissions
@property
def atat_role_name(self):
return self.atat_role.name
@property
def full_name(self):
return "{} {}".format(self.first_name, self.last_name)