Historical working copy retained for audit before consolidation into main. The canonicalized plugin architecture and later fixes already live in main; this snapshot is not a release or a request to restore obsolete source layout.
7 lines
261 B
Plaintext
7 lines
261 B
Plaintext
// Only WLAN discovery. No host association/profile modification authority.
|
|
polkit.addRule(function(action, subject) {
|
|
if (subject.user === "mission-core-k1" && action.id === "org.freedesktop.NetworkManager.wifi.scan") {
|
|
return polkit.Result.YES;
|
|
}
|
|
});
|