-
Notifications
You must be signed in to change notification settings - Fork 733
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
Feed/Category mapper for integrations #2125
Conversation
"urls": appriseConfig.Feeds[strconv.Itoa(int(entry.FeedID))], | ||
"body": message, | ||
}) | ||
// TODO - add function to fetch category related to this entry |
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.
I do get null pointer on this one, need to check on how to mount categories with feed
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.
should we limit functionality to feed only?
This overriding default browser check for required input field v2/internal/ui/static/js/app.js Lines 60 to 69 in 9f62704
I am unable to force users to fill required input field (token fields) before submitting. We might have a case where user will submit empty value for a respective category / feed |
keyInput.appendChild(option_group); | ||
} | ||
if (category) { | ||
const category_value = this.categoryValue.filter(obj => obj.title !== "All"); |
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.
filter category All since we have a default entry which will act as catch-all
Hi @fguillot you will encounter issue while typing in ValueInput and that's because KeyboardHandler listening on keydown. can we disable this for integrations? |
Ok I see now, because I am using web component it's not ignoring it. should be fine now |
Hello @fguillot , can we have a discussion on this one? Thanks |
d02052b
to
a15cdb1
Compare
Do you follow the guidelines?