mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-08 06:00:50 -07:00
Added a button to approve an individual request. Fixed some minor bugs in the request screen
25 lines
570 B
JavaScript
25 lines
570 B
JavaScript
function generateNotify(message, type) {
|
|
// type = danger, warning, info, successs
|
|
$.notify({
|
|
// options
|
|
message: message
|
|
}, {
|
|
// settings
|
|
type: type,
|
|
animate: {
|
|
enter: 'animated bounceInDown',
|
|
exit: 'animated bounceOutUp'
|
|
},
|
|
newest_on_top: true
|
|
|
|
});
|
|
}
|
|
|
|
function checkJsonResponse(response) {
|
|
if (response.result === true) {
|
|
return true;
|
|
} else {
|
|
generateNotify(response.message, "warning");
|
|
return false;
|
|
}
|
|
}
|