Skip to content
Snippets Groups Projects

Update path navigation to go to parent policies

Merged Alexander Turinske requested to merge 345321-update-source-path into master
All threads resolved!
2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
import { getBaseURL, joinPaths } from '~/lib/utils/url_utility';
export const getSourceUrl = (fullPath) => {
return joinPaths(getBaseURL(), fullPath);
return joinPaths(getBaseURL(), 'groups', fullPath, '-', 'security', 'policies');
};
export const isPolicyInherited = (source) => {
Loading