mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2025-12-20 04:40:05 +01:00
Fix the action description for some actions which are used to both enroll and delete fingerprints for users. Closes: #116
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE policyconfig PUBLIC
|
|
"-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN"
|
|
"http://www.freedesktop.org/standards/PolicyKit/1.0/policyconfig.dtd">
|
|
|
|
<policyconfig>
|
|
|
|
<vendor>The FPrint Project</vendor>
|
|
<vendor_url>https://fprint.freedesktop.org/</vendor_url>
|
|
<icon_name>fprint</icon_name>
|
|
|
|
<action id="net.reactivated.fprint.device.verify">
|
|
<description>Verify a fingerprint</description>
|
|
<message>Privileges are required to verify fingerprints.</message>
|
|
<defaults>
|
|
<allow_any>no</allow_any>
|
|
<allow_inactive>no</allow_inactive>
|
|
<allow_active>yes</allow_active>
|
|
</defaults>
|
|
</action>
|
|
|
|
<action id="net.reactivated.fprint.device.enroll">
|
|
<description>Enroll or Delete fingerprints</description>
|
|
<message>Privileges are required to enroll or delete fingerprints.</message>
|
|
<defaults>
|
|
<allow_any>no</allow_any>
|
|
<allow_inactive>no</allow_inactive>
|
|
<allow_active>auth_self_keep</allow_active>
|
|
</defaults>
|
|
</action>
|
|
|
|
<action id="net.reactivated.fprint.device.setusername">
|
|
<description>Select a user to manage fingerprints for</description>
|
|
<message>Privileges are required to manage fingerprints for other users.</message>
|
|
<defaults>
|
|
<allow_any>no</allow_any>
|
|
<allow_inactive>no</allow_inactive>
|
|
<allow_active>auth_admin_keep</allow_active>
|
|
</defaults>
|
|
</action>
|
|
|
|
</policyconfig>
|