Skip to content
Snippets Groups Projects
Commit 7444d87c authored by Valentin Rigal's avatar Valentin Rigal
Browse files

Remove unused code in the mixin

parent 3238f0c0
No related branches found
No related tags found
No related merge requests found
......@@ -89,12 +89,8 @@ class NewCorpusACLMixin(ACLMixin):
id__in=filter_rights(self.user, Corpus, Role.Contributor.value).values('id')
)
@property
def administrable_corpora(self):
return self.rights_filter(Corpus, Role.Admin.value)
def has_read_access(self, corpus):
return corpus.public or self.has_access(corpus, Role.Guest.value)
return self.has_access(corpus, Role.Guest.value)
def has_write_access(self, corpus):
return self.has_access(corpus, Role.Contributor.value)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment