Skip to content

Commit

Permalink
Merge pull request #87 from EsupPortail/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
Ptitloup authored Aug 30, 2018
2 parents 82d3dea + 6d3f0a9 commit 169d0b8
Show file tree
Hide file tree
Showing 45 changed files with 2,011 additions and 434 deletions.
220 changes: 220 additions & 0 deletions docs/configuration.md

Large diffs are not rendered by default.

306 changes: 262 additions & 44 deletions docs/installation.md

Large diffs are not rendered by default.

13 changes: 10 additions & 3 deletions pod/authentication/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,19 @@
AFFILIATION = getattr(
settings, 'AFFILIATION',
(
('member', _('member')),
('student', _('student')),
('faculty', _('faculty')),
('staff', _('staff')),
('affiliate', _('affiliate')),
('employee', _('employee')),
('faculty', _('faculty'))
('member', _('member')),
('affiliate', _('affiliate')),
('alum', _('alum')),
('library-walk-in', _('library-walk-in')),
('researcher', _('researcher')),
('retired', _('retired')),
('emeritus', _('emeritus')),
('teacher', _('teacher')),
('registered-reader', _('registered-reader'))
)
)
SECRET_KEY = getattr(settings, 'SECRET_KEY', '')
Expand Down
Loading

0 comments on commit 169d0b8

Please sign in to comment.