Commit 444cecbf authored by Bryce Johnson's avatar Bryce Johnson

Stub out service desk filtered search.

parent 9c2c1f3c
export default class FilteredSearchServiceDesk extends gl.FilteredSearchManager {
constructor() {
super('service_desk');
this.cantEdit = [{ }];
}
canEdit(tokenName) {
return this.cantEdit.indexOf(tokenName) === -1;
}
}
new FilteredSearchServiceDesk();
console.log("Service desk issues entry point");
import FilteredSearchServiceDesk from './filtered_search';
// bulk edit?
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment