Skip to content
Snippets Groups Projects
Commit 4556b37e authored by Piotr Gawron's avatar Piotr Gawron
Browse files

stub functions for buttons

parent 5be7cbd2
No related branches found
No related tags found
2 merge requests!115Resolve "admin panel should use API",!114Resolve "admin panel should use API"
......@@ -152,4 +152,17 @@ MapsAdminPanel.prototype.setProjects = function(projects) {
});
}
MapsAdminPanel.prototype.onAddClicked = function() {
return Promise.reject(new Error("Not implemented"));
};
MapsAdminPanel.prototype.onRefreshClicked = function() {
return Promise.reject(new Error("Not implemented"));
};
MapsAdminPanel.prototype.showEditDialog = function(id) {
return Promise.reject(new Error("Not implemented"));
};
MapsAdminPanel.prototype.removeProject = function(id) {
return Promise.reject(new Error("Not implemented"));
};
module.exports = MapsAdminPanel;
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