-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[connectors] Implement permission setting in Zendesk (#8213)
* feat: implement permission setting * feat: remove the permission field from the ZendeskBrand model * feat: add distinct permissions within a brand for the help center and the tickets * feat: add a migration script * feat: implement distinct permissions within a brand for the help center and the tickets * feat: add ticket nodes in retrieveSelectedNodes * remove the catch-all try catch block * feat: remove error throwing on permission setting
- Loading branch information
1 parent
abfd44f
commit 27d5345
Showing
8 changed files
with
540 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-- Migration created on Oct 23, 2024 | ||
ALTER TABLE "zendesk_brands" | ||
DROP COLUMN "permission"; | ||
ALTER TABLE "zendesk_brands" | ||
ADD COLUMN "helpCenterPermission" VARCHAR(255) NOT NULL DEFAULT 'none'; | ||
ALTER TABLE "zendesk_brands" | ||
ADD COLUMN "ticketsPermission" VARCHAR(255) NOT NULL DEFAULT 'none'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.