User Acess
User Access
Sometimes a user must request access to certain resources before she can use them.
interface UserAccess {
id: string
createdAt: any
unlockedBy: any
}
type UserAccessType =
| 'question'
| 'questionAnswerAll'
| 'questionAnswer'
| 'questionWithTopicId'
| 'questionAnswerFromAuthor'
| 'feedbackAll'
| 'feedback'
| 'feedbackFromAuthor'
| 'questionAnswerStats'
| 'questionHistory'
| 'questionScoresEdit'