Reputation: 2212
Scenario:
Employee A is working in organisation & employee A is having organisation app & app data. When Employee A leaves the organisation, data from his organisation app can be deleted by organisation authority from server end without asking the Employee A.
Query: So Please suggest what can be trusted & efficient way (A-C or any) to implement above scenario.
Upvotes: 0
Views: 31
Reputation: 3758
You could simply check, at app launch time or when it is woken from sleep, if data needs to be deleted. You could design a specific API endpoint on the server end which would allow that. Plus, that mechanism would also allow some kind of interaction with the user, to let him know that his data has been deleted.
Upvotes: 1