mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-10 10:26:40 +00:00
feat: Custom message files (#1992)
* feat: add get custom message text to admin api * feat: read custom message texts from files * feat: get languages in apis * feat: get languages in apis * feat: get languages in apis * feat: pr feedback * feat: docs * feat: merge main
This commit is contained in:
14
migrations/cockroach/V1.55__custom_text.sql
Normal file
14
migrations/cockroach/V1.55__custom_text.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
CREATE TABLE notification.custom_texts (
|
||||
aggregate_id TEXT,
|
||||
|
||||
creation_date TIMESTAMPTZ,
|
||||
change_date TIMESTAMPTZ,
|
||||
sequence BIGINT,
|
||||
|
||||
template TEXT,
|
||||
language TEXT,
|
||||
key TEXT,
|
||||
text TEXT,
|
||||
|
||||
PRIMARY KEY (aggregate_id, template, key, language)
|
||||
);
|
Reference in New Issue
Block a user