-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NatsOrganizationUser inherits from AbstractNatsApp (#14)
* NatsOrganizationUser inherits from AbstractNatsApp * delete unused code
- Loading branch information
1 parent
3d75fb2
commit 106f299
Showing
3 changed files
with
52 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Generated by Django 3.2.7 on 2022-08-14 23:29 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('django_nats_nkeys', '0004_auto_20220813_2050'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='natsorganizationuser', | ||
name='allow_pub', | ||
field=models.CharField(help_text='add publish permissions, comma separated list. equivalent to `nsc add user ... --allow-pub=<permissions>`', max_length=255, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='natsorganizationuser', | ||
name='allow_pubsub', | ||
field=models.CharField(help_text='add publish/subscribe permissions, comma separated list. equivalent to `nsc add user ... --allow-pubsub=<permissions>`', max_length=255, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='natsorganizationuser', | ||
name='allow_sub', | ||
field=models.CharField(help_text='add subscribe permissions, comma separated list. equivalent to `nsc add user ... --allow-sub=<permissions>`', max_length=255, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='natsorganizationuser', | ||
name='deny_pub', | ||
field=models.CharField(help_text='deny publish permissions, comma separated list. equivalent to `nsc add user ... --deny-pub=<permissions>`', max_length=255, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='natsorganizationuser', | ||
name='deny_pubsub', | ||
field=models.CharField(help_text='deny publish/subscribe permissions, comma separated list. equivalent to `nsc add user ... --deny-pubsub=<permissions>`', max_length=255, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='natsorganizationuser', | ||
name='deny_sub', | ||
field=models.CharField(help_text='deny subscribe permissions, comma separated list. equivalent to `nsc add user ... --deny-sub=<permissions>`', max_length=255, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters