Answer the question
In order to leave comments, you need to log in
How do I submit an access request?
Good afternoon.
There is a task: there is a file, it has an owner. You need to send a request from another user to gain access.
Can you suggest what solutions are available?
You can link to the documentation or at least the name where to look.
Answer the question
In order to leave comments, you need to log in
Good afternoon!
It would be nice to describe the problem in more detail so that you can answer more precisely.
there is a file, it has an owner
You need to send a request from another user to gain access.
You can link to the documentation or at least the name where to look.
entity User {
List<File> uploadedFiles; (OneToMany)
List<File> files; (ManyToMany)
}
entity File {
User owner; (ManyToOne)
List<User> users; (ManyToMany)
}
uploadedFiles - files uploaded by the user
owner - file owner
files - files to which the user has access
users - users who have access to this file.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question