I have 3 types of users:
- Admins
- Manager
- Employees
Each user type will have a different user interface and access different types of data. Their only similarity is they are using one mobile(hybrid) application but they access totally different things. I am using ionic 2 framework to build the application.
The database design is
users:
- uid_0 name: “salman” type: “Admin”
- uid_1 name: “Raja” type: “Manager”
- uid_2 name: “Dyson” type: “Employee”
can anyone help me with this.
thanks in advance