7 lines
216 B
Text
7 lines
216 B
Text
|
polkit.addRule(function(action, subject) {
|
||
|
if (action.id == "org.freedesktop.NetworkManager.settings.modify.system" &&
|
||
|
subject.isInGroup("role-teacher")) {
|
||
|
return polkit.Result.YES;
|
||
|
}
|
||
|
});
|