// Model/table mapping
config.tx_extbase.persistence.classes {
	TYPO3\CMS\Beuser\Domain\Model\BackendUser {
		mapping {
			tableName = be_users
			columns {
				allowed_languages.mapOnProperty = allowedLanguages
				file_mountpoints.mapOnProperty = fileMountPoints
				db_mountpoints.mapOnProperty = dbMountPoints
				usergroup.mapOnProperty = backendUserGroups
			}
		}
	}
	TYPO3\CMS\Beuser\Domain\Model\BackendUserGroup {
		mapping {
			tableName = be_groups
			columns {
				subgroup.mapOnProperty = subGroups
			}
		}
	}
}

module.tx_beuser {
	persistence {
		storagePid = 0
	}

	settings {
		// This is a dummy entry. It is used in \TYPO3\CMS\Beuser\Controller\BackendUserController
		// to test that some TypoScript configuration is set.
		// This entry can be removed if extbase setup is made frontend TS independent
		// or if there are other settings set.
		dummy = foo
	}
}