koninklijke-collective / my_user_management

TYPO3 Extension: User Management
https://typo3.org/extensions/repository/view/my_user_management
7 stars 19 forks source link

Tab Access not visible #43

Closed DerVolli closed 3 years ago

DerVolli commented 5 years ago

Even if I grant starttime and endtime for a usergroup which should be able to use the backend user administration the tab "Access" is not showing for users who have this group. The rest seemed to work.

We are still using typo3 6.2, not yet tested in typo3 8 (which we are moving to this year, but a solution for 6.2 would be very appreciated!)

itzonban commented 5 years ago

Hi @DerVolli,

I have the same issue with TYPO3 8. It looks like it's hard-coded in Configuration/TCA/Overrides/be_users.php:

// Make all fields to exclude for users
foreach ($GLOBALS['TCA']['be_users']['columns'] as $key => &$configuration) {
    $configuration['exclude'] = 1;
    switch ($key) {
        // Ignore certain fields
        case 'admin':
        case 'starttime':
        case 'endtime':
            $configuration['displayCond'] = 'HIDE_FOR_NON_ADMINS';
            break;
    }
}

Is there a reason why starttime and endtime are listed here? We use "webmaster" groups, which should be able to set start/endtime. And even the 'admin' field shouldn't be neccessary, just don't grant it to the user/group...

Best regards Daniel