mirror of
https://github.com/abhinavxd/libredesk.git
synced 2026-09-20 17:43:21 +00:00
92b614ddf6
- feat[automation]: execution mode for automations to execute the first matching rule or run all. - Refactor automations to use fields, values, operator and select options from @/consts @/composables - Refactor view filters to use the pick fields, values, operator, select options from @/consts @/composables - feat: Move from yarn to pnpm! - feat: Custom component ComboBox, replaces convo sidebar inputs with combo box. - feat: initialize stores on app load to avoid multiple API calls by storing data in Pinia. - change app fontm trying diff fonts. - Keep side bar menu items by default open in inboxes .
5 lines
160 B
SQL
5 lines
160 B
SQL
-- name: get-all
|
|
SELECT created_at, id, name from conversation_priorities;
|
|
|
|
-- name: get
|
|
SELECT created_at, id, name from conversation_priorities WHERE id = $1; |