forked from github/plane
Merge branch 'stage-release' of gurusainath:makeplane/plane into develop
This commit is contained in:
commit
c5e418ab47
@ -214,6 +214,7 @@ class UnreadNotificationEndpoint(BaseAPIView):
|
|||||||
workspace__slug=slug,
|
workspace__slug=slug,
|
||||||
receiver_id=request.user.id,
|
receiver_id=request.user.id,
|
||||||
read_at__isnull=True,
|
read_at__isnull=True,
|
||||||
|
archived_at__isnull=True,
|
||||||
entity_identifier__in=IssueSubscriber.objects.filter(
|
entity_identifier__in=IssueSubscriber.objects.filter(
|
||||||
workspace__slug=slug, subscriber_id=request.user.id
|
workspace__slug=slug, subscriber_id=request.user.id
|
||||||
).values_list("issue_id", flat=True),
|
).values_list("issue_id", flat=True),
|
||||||
@ -224,6 +225,7 @@ class UnreadNotificationEndpoint(BaseAPIView):
|
|||||||
workspace__slug=slug,
|
workspace__slug=slug,
|
||||||
receiver_id=request.user.id,
|
receiver_id=request.user.id,
|
||||||
read_at__isnull=True,
|
read_at__isnull=True,
|
||||||
|
archived_at__isnull=True,
|
||||||
entity_identifier__in=IssueAssignee.objects.filter(
|
entity_identifier__in=IssueAssignee.objects.filter(
|
||||||
workspace__slug=slug, assignee_id=request.user.id
|
workspace__slug=slug, assignee_id=request.user.id
|
||||||
).values_list("issue_id", flat=True),
|
).values_list("issue_id", flat=True),
|
||||||
@ -234,6 +236,7 @@ class UnreadNotificationEndpoint(BaseAPIView):
|
|||||||
workspace__slug=slug,
|
workspace__slug=slug,
|
||||||
receiver_id=request.user.id,
|
receiver_id=request.user.id,
|
||||||
read_at__isnull=True,
|
read_at__isnull=True,
|
||||||
|
archived_at__isnull=True,
|
||||||
entity_identifier__in=Issue.objects.filter(
|
entity_identifier__in=Issue.objects.filter(
|
||||||
workspace__slug=slug, created_by=request.user
|
workspace__slug=slug, created_by=request.user
|
||||||
).values_list("pk", flat=True),
|
).values_list("pk", flat=True),
|
||||||
|
35
apiserver/plane/db/migrations/0038_auto_20230720_1505.py
Normal file
35
apiserver/plane/db/migrations/0038_auto_20230720_1505.py
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
# Generated by Django 4.2.3 on 2023-07-20 09:35
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
def restructure_theming(apps, schema_editor):
|
||||||
|
Model = apps.get_model("db", "User")
|
||||||
|
updated_user = []
|
||||||
|
for obj in Model.objects.exclude(theme={}).all():
|
||||||
|
current_theme = obj.theme
|
||||||
|
updated_theme = {
|
||||||
|
"primary": current_theme.get("accent", ""),
|
||||||
|
"background": current_theme.get("bgBase", ""),
|
||||||
|
"sidebarBackground": current_theme.get("sidebar", ""),
|
||||||
|
"text": current_theme.get("textBase", ""),
|
||||||
|
"sidebarText": current_theme.get("textBase", ""),
|
||||||
|
"palette": f"""{current_theme.get("bgBase","")},{current_theme.get("textBase", "")},{current_theme.get("accent", "")},{current_theme.get("sidebar","")},{current_theme.get("textBase", "")}""",
|
||||||
|
"darkPalette": current_theme.get("darkPalette", "")
|
||||||
|
}
|
||||||
|
obj.theme = updated_theme
|
||||||
|
updated_user.append(obj)
|
||||||
|
|
||||||
|
Model.objects.bulk_update(
|
||||||
|
updated_user, ["theme"], batch_size=100
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
dependencies = [
|
||||||
|
("db", "0037_issue_archived_at_project_archive_in_and_more"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RunPython(restructure_theming)
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user