xref: /dokuwiki/inc/Action/AbstractAliasAction.php (revision f21dad3906d4ec6b3d86685599409894630abdc1)
1*f21dad39SAndreas Gohr<?php
2*f21dad39SAndreas Gohr
3*f21dad39SAndreas Gohrnamespace dokuwiki\Action;
4*f21dad39SAndreas Gohr
5*f21dad39SAndreas Gohruse dokuwiki\Action\Exception\ActionAclRequiredException;
6*f21dad39SAndreas Gohruse dokuwiki\Action\Exception\ActionException;
7*f21dad39SAndreas Gohr
8*f21dad39SAndreas Gohrabstract class AbstractAliasAction extends AbstractAction {
9*f21dad39SAndreas Gohr
10*f21dad39SAndreas Gohr    /** @inheritdoc */
11*f21dad39SAndreas Gohr    function minimumPermission() {
12*f21dad39SAndreas Gohr        return AUTH_NONE;
13*f21dad39SAndreas Gohr    }
14*f21dad39SAndreas Gohr
15*f21dad39SAndreas Gohr}
16