Skip to content
Snippets Groups Projects
Verified Commit c736ffdf authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Validate user id for users select autcomplete


Single user autcomplete should be used only for existing users with
digital ID provided. Now js code puts any input into generating user URL
which can lead to 500 error because routing like this does not exists:

GET "/autocomplete/users/whatever@example.com.json".

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 48d223d7
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -325,6 +325,10 @@
};
 
UsersSelect.prototype.user = function(user_id, callback) {
if(!/^\d+$/.test(user_id)) {
return false;
}
var url;
url = this.buildUrl(this.userPath);
url = url.replace(':id', user_id);
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment