If I use the [MinervaNeue skin](https://www.mediawiki.org/wiki/Skin:Minerva_Neue) for the MobileFrontend extension and I set the following [user rights](https://www.mediawiki.org/wiki/Manual:User_rights) in MediaWiki via the [wgGroupPermissions](https://www.mediawiki.org/wiki/Manual:$wgGroupPermissions) preference in the `LocalSettings.php` file:
```
$wgGroupPermissions['*']['edit'] = false;
$wgGroupPermissions['user']['edit'] = true;
```
Expected:
As the setting above defines that anonymous users who are not logged in cannot edit a wiki page, I should get some indication I cannot edit.
Actual:
the edit button can still be clicked and I see this
{F26530261}
I can continue the edit and its only when I try to save that I hit issues.
Expected: Clicking the edit icon should prompt the user to login in some way.
= acceptance criteria
[x] Edit icon must show at locked for these users
[] When clicking the edit icon we should show the `CtaDrawer` just as we do for the watchstar.
[] The messaging of the drawer should use mobile-frontend-edit-login-action
= Developer notes
At minimum, we should disable the edit icon to these users (showing edit-locked) based on the check of permissions.
A better solution would be to mimic the `CtaDrawer` for the watchstar.
The `CtaDrawer` provides this functionality for the watchstar.
{F26530277}
Related: T206813