Hello I am developing an App where in there is a two type of user, first is Admin and the second one is a Regular User. Now I want to allow update on a specific field in Regular User's document called disable, only Admins can update this field. But another problem is that I want to allow updates in document's field only by the user itself like if (uid == documentId) allow write in fields since I do not want other user to just update someone's account information. How can I possibly perform this things, are they available in Rules?
Note: There will be two Collection Admins and Users where each document id is account's UID.
Thanks in advance.