mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 14:01:45 +02:00
feat: adding pi enabled to workspace features (#3870)
This commit is contained in:
committed by
GitHub
parent
eef03e671e
commit
693aabfbd6
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 4.2.22 on 2025-08-08 12:24
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('ee', '0042_recurringworkitemtask_interval_type_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='workspacefeature',
|
||||
name='is_pi_enabled',
|
||||
field=models.BooleanField(default=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='workspacefeature',
|
||||
name='is_wiki_enabled',
|
||||
field=models.BooleanField(default=True),
|
||||
),
|
||||
]
|
||||
@@ -17,6 +17,8 @@ class WorkspaceFeature(BaseModel):
|
||||
is_initiative_enabled = models.BooleanField(default=False)
|
||||
is_teams_enabled = models.BooleanField(default=False)
|
||||
is_customer_enabled = models.BooleanField(default=False)
|
||||
is_wiki_enabled = models.BooleanField(default=True)
|
||||
is_pi_enabled = models.BooleanField(default=True)
|
||||
|
||||
class Meta:
|
||||
verbose_name = "Workspace Feature"
|
||||
|
||||
Reference in New Issue
Block a user