mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* remove legacy ac checks * fix RBAC disabled tests * add permissions for tests to work * fix unifiedalertstatesworker test
5 lines
213 B
TypeScript
5 lines
213 B
TypeScript
// accessControlQueryParam adds an additional accesscontrol=true param to params when accesscontrol is enabled
|
|
export function accessControlQueryParam(params = {}) {
|
|
return { ...params, accesscontrol: true };
|
|
}
|