Add ‘caseworking’ service permission

We want to add the option for a user to have a more restricted view of
Notify.

This should be opt in/out on a per service basis, because it will be
appropriate only for a minority of teams. It shouldn’t be the default
because most teams (those without a lot of users or those only using the
API) won’t need it.

So this commit adds it as a new service permission, which means we can
roll it out:
- in prototype form initially
- then as an opt-in service setting
This commit is contained in:
Chris Hill-Scott
2018-06-11 10:15:51 +01:00
parent 87bff670ff
commit 234c5c705a
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
"""empty message
Revision ID: 0198_add_caseworking_permission
Revises: 0197_service_contact_link
Create Date: 2018-02-21 12:05:00
"""
# revision identifiers, used by Alembic.
revision = '0198_add_caseworking_permission'
down_revision = '0197_service_contact_link'
from alembic import op
PERMISSION_NAME = "caseworking"
def upgrade():
op.get_bind()
op.execute("insert into service_permission_types values('{}')".format(PERMISSION_NAME))
def downgrade():
op.get_bind()
op.execute("delete from service_permissions where permission = '{}'".format(PERMISSION_NAME))
op.execute("delete from service_permission_types where name = '{}'".format(PERMISSION_NAME))