-
Notifications
You must be signed in to change notification settings - Fork 1
User N8N workflows [WIP] #599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
de5fcae
bb801bd
4f3830b
6172ec4
4d10a40
cd9a346
fb961ff
826471d
6a229d3
535ed4a
5257858
75bfbba
1c5e175
a8b0548
f5908a6
3a2efdc
e711b24
d4f020d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -5,9 +5,6 @@ object_relationships: | |||||||||||
| - name: complexityEnum | ||||||||||||
| using: | ||||||||||||
| foreign_key_constraint_on: default_complexity | ||||||||||||
| - name: department | ||||||||||||
| using: | ||||||||||||
| foreign_key_constraint_on: department_id | ||||||||||||
| - name: lengthEnum | ||||||||||||
| using: | ||||||||||||
| foreign_key_constraint_on: default_length | ||||||||||||
|
|
@@ -39,13 +36,6 @@ array_relationships: | |||||||||||
| table: | ||||||||||||
| name: chatbot_domain | ||||||||||||
| schema: public | ||||||||||||
| - name: organization_chatbots | ||||||||||||
| using: | ||||||||||||
| foreign_key_constraint_on: | ||||||||||||
| column: chatbot_id | ||||||||||||
| table: | ||||||||||||
| name: organization_chatbot | ||||||||||||
| schema: public | ||||||||||||
| - name: prompts | ||||||||||||
| using: | ||||||||||||
| foreign_key_constraint_on: | ||||||||||||
|
|
@@ -66,6 +56,7 @@ select_permissions: | |||||||||||
| columns: | ||||||||||||
| - avatar | ||||||||||||
| - chatbot_id | ||||||||||||
| - chatbot_id | ||||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove duplicate column entry. The 🔎 Proposed fix columns:
- avatar
- chatbot_id
- - chatbot_id
- created_by📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||
| - created_by | ||||||||||||
| - default_complexity | ||||||||||||
| - default_length | ||||||||||||
|
|
@@ -84,20 +75,20 @@ select_permissions: | |||||||||||
| - role: moderator | ||||||||||||
| permission: | ||||||||||||
| columns: | ||||||||||||
| - disabled | ||||||||||||
| - is_pro | ||||||||||||
| - pro_exclusive | ||||||||||||
| - avatar | ||||||||||||
| - chatbot_id | ||||||||||||
| - department_id | ||||||||||||
| - order | ||||||||||||
| - avatar | ||||||||||||
| - created_by | ||||||||||||
| - default_complexity | ||||||||||||
| - default_length | ||||||||||||
| - default_tone | ||||||||||||
| - default_type | ||||||||||||
| - department_id | ||||||||||||
| - description | ||||||||||||
| - disabled | ||||||||||||
| - name | ||||||||||||
| - order | ||||||||||||
| filter: {} | ||||||||||||
| allow_aggregations: true | ||||||||||||
| comment: "" | ||||||||||||
|
|
||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate column
chatbot_idappears twice in the select permissions. This appears to be an accidental duplication that should be removed.