Skip to content

Unlocker Permission

ContentLock adds a single granular permission to Umbraco: ContentLock.Unlocker.


Users with the Unlocker permission can:

  • Unlock a node locked by another user — normally only the editor who applied the lock can unlock it. The Unlocker permission bypasses this restriction.
  • Perform bulk unlocks from the dashboard — the Bulk Unlock button is only visible to users with this permission.

Without the Unlocker permission, an editor can only unlock nodes that they themselves locked.


The ContentLock.Unlocker permission is automatically added to the Administrators user group when ContentLock runs its first-time migration on install. Umbraco administrators have full unlock capabilities out of the box.


To grant the Unlocker permission to another user group (e.g., a “Content Managers” group):

  1. In the Umbraco backoffice, go to SettingsUsersUser Groups.
  2. Open the user group you want to edit.
  3. Click the Permissions tab.
  4. Scroll to the Content Lock section.
  5. Tick the Unlocker checkbox.
  6. Click Save.

All users in that group will immediately have the Unlocker permission.


PropertyValue
Permission keyContentLock.Unlocker
Permission groupContent Lock
LabelUnlocker
DescriptionAllows the group of users to unlock a document that is locked by another user.
Auto-assigned toAdministrators user group (on first install)

ContentLock provides an extension method on IUser for checking this permission in C# code:

bool canUnlock = user.HasContentUnlockPermission();

This helper is defined in ContentLock.Extensions.IUserExtensions and checks for the ContentLock.Unlocker granular permission constant.