Skip to content

Commit

Permalink
Guest workspace field added
Browse files Browse the repository at this point in the history
  • Loading branch information
Shreya2803 committed Jan 10, 2024
1 parent bb47e81 commit a5b3094
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions backend/workspaces/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ class Workspace(models.Model, DummyModelMixin):

created_at = models.DateTimeField(verbose_name="created_at", auto_now_add=True)

guest_workspace = models.BooleanField(
verbose_name="guest_workspace",
default=False,
help_text=("Indicates if the workspace is for guest users."),
)

public_analytics = models.BooleanField(
verbose_name="public_analytics",
default=True,
Expand Down

0 comments on commit a5b3094

Please sign in to comment.