Compare commits

...

23 Commits

Author SHA1 Message Date
NarayanBavisetti
53487eaadd fix: pushing local settings 2023-07-12 12:18:33 +05:30
NarayanBavisetti
c65f93c971 fix: resolved merge conflict 2023-07-12 12:17:51 +05:30
pablohashescobar
cc513b9030 dev: notification new endpoints 2023-07-11 12:53:06 +05:30
pablohashescobar
624dfdb2b6 dev: add issue name in notifications 2023-07-10 17:52:02 +05:30
pablohashescobar
6c3be6faba dev: notification filtering 2023-07-10 13:51:36 +05:30
pablohashescobar
90c819b1ba dev: update notifications 2023-07-07 18:07:06 +05:30
pablohashescobar
581dff5482 dev: notification segregation 2023-07-07 16:02:17 +05:30
pablohashescobar
9a6026c0c7 Merge branch 'develop' of github.com:makeplane/plane into feat/notifications 2023-07-07 15:17:26 +05:30
pablohashescobar
ea605cf48c dev: update issue notifications 2023-07-03 17:28:09 +05:30
pablohashescobar
ebc9f36dc2 Merge branch 'develop' of github.com:makeplane/plane into feat/notifications 2023-07-03 17:07:29 +05:30
pablohashescobar
e73b39fcdf dev: filter by snoozed and response update for list and permissions 2023-06-23 11:25:27 +05:30
NarayanBavisetti
be96ec47ba feat: added list and unsubscribe function in issue subscriber 2023-06-23 01:15:35 +05:30
pablohashescobar
dcde6b2567 dev: notification endpoints and fix bg worker for saving notifications 2023-06-22 21:31:30 +05:30
pablohashescobar
8260e2f897 Merge branch 'develop' of github.com:makeplane/plane into feat/notifications 2023-06-22 20:56:53 +05:30
pablohashescobar
2cd3dc2f9d dev: remove delete endpoint response data 2023-06-22 19:01:15 +05:30
pablohashescobar
ecfc09da30 Merge branch 'feat/notifications' of github.com:makeplane/plane into feat/notifications 2023-06-22 18:44:47 +05:30
pablohashescobar
0af49306a9 dev: notification models and operations 2023-06-22 18:38:51 +05:30
NarayanBavisetti
cf4bb02a9f feat: added CRUD operation for issue subscriber 2023-06-22 18:27:40 +05:30
NarayanBavisetti
9c0a2b74b3 Revert "feat: added CRUD operation for issue subscriber"
This reverts commit b22e062576.
2023-06-22 18:24:22 +05:30
NarayanBavisetti
b22e062576 feat: added CRUD operation for issue subscriber 2023-06-22 18:20:59 +05:30
pablohashescobar
f80f98ddef dev: notification model 2023-06-22 13:38:45 +05:30
pablohashescobar
9fd245a53c Merge branch 'develop' of github.com:makeplane/plane into feat/notifications 2023-06-22 10:43:05 +05:30
NarayanBavisetti
b2451ac03d feat: added new issue subscriber table 2023-06-21 12:04:47 +05:30
2 changed files with 2 additions and 1 deletions

View File

@ -76,6 +76,7 @@ from plane.api.views import (
IssueLinkViewSet,
BulkCreateIssueLabelsEndpoint,
IssueAttachmentEndpoint,
IssueSubscriberViewSet,
IssueArchiveViewSet,
IssueSubscriberViewSet,
## End Issues

View File

@ -569,7 +569,7 @@ def track_archive_in(
comment=f"{actor.email} has restored the issue",
verb="updated",
actor=actor,
field="archvied_at",
field="archived_at",
old_value="archive",
new_value="restore",
)