7 lines
225 B
Plaintext
7 lines
225 B
Plaintext
polkit.addRule(function(action, subject) {
|
|
if (/^org\.freedesktop\.ModemManager1\.(Device\.Control|Contacts|Messaging|Location)$/.test(action.id) &&
|
|
subject.isInGroup("network")) {
|
|
return "yes";
|
|
}
|
|
});
|