Skip to content

Commit

Permalink
added back shared users
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBurchLog authored Mar 8, 2024
1 parent fbbedb6 commit 9aeb929
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions brewtils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1413,6 +1413,7 @@ def __init__(
children=None,
metadata=None,
default_user=None,
shared_users=None,
):
self.id = id
self.name = name
Expand All @@ -1431,6 +1432,7 @@ def __init__(
self.metadata = metadata or {}

self.default_user = default_user
self.shared_users = shared_users

def __str__(self):
return "%s" % self.name
Expand Down
1 change: 1 addition & 0 deletions brewtils/test/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -840,6 +840,7 @@ def garden_dict(ts_epoch, system_dict, connection_dict, connection_publishing_di
"children": [],
"metadata": {},
"default_user": None,
"shared_users": True,
}


Expand Down

0 comments on commit 9aeb929

Please sign in to comment.