Added limitation on viewing all character profiles

This commit is contained in:
2011-06-03 00:40:26 +01:00
parent d2406d6614
commit 2caf173e7b
2 changed files with 9 additions and 0 deletions

View File

@@ -84,3 +84,7 @@ class EVEPlayerCharacter(EVEAPIModel):
app_label = 'eve_api'
verbose_name = 'Player Character'
verbose_name_plural = 'Player Characters'
permissions = (
("can_view_all_characters", "Can view any character profile"),
)