Hi @duncant ,
Do you want to limit the function of creating or removing data source?
There are two ways, let me explain them.
1)give different users different permission of your data source.
You should setting this in your data source.
2)use if statement when creating or removing data source to justify users.
You should set this in your app.
For example, set the navigate button's OnSelect:
If(User().Email="emailaddress1",Navigate(Screenupdate),
Navigate(Screenread)
)
You could only set the submit button's OnSelect:
If(User().Email="emailaddress1",Patch(...)) //please replace emailaddress1 with the emaill address that you want
//only current user's email="emailaddress1", then he could submit the data
Best regards,