Skip to content

Latest commit

 

History

History
38 lines (20 loc) · 1.77 KB

File metadata and controls

38 lines (20 loc) · 1.77 KB

# <Login/> and <Auth/>

Readings

What is the Role Based Access Control (RBAC)?

  • What is Role Based Access Control (RBAC)?

    • Role-based access control (RBAC) restricts network access based on a person’s role within an organization and has become one of the main methods for advanced access control. The roles in RBAC refer to the levels of access that employees have to the network.
  • Share some an example of RBAC including all possible CRUD operations and correlating roles.

    • Coaches can: CREATE schedules, READ schedules, UPDATE schedules and DELETE schedules.
    • Players can: READ schedules
  • What are the Benefits of RBAC?

    • It can help control who has access to sensitive information (PPI), that could cause lots of problems.

React Cookie Library

react-cookies component

  • Describe some react-cookie features.

    • Access and modify cookies using hooks - Specify list of cookie names component depends on - Cookies: JS object with all your cookies and key is the cookie name - wrap app around cookie provider and import cookie hook into component from library
  • Describe some react-cookies features.

    • mport cookie from library and utilize API methods - Each cookie is added with a user name, value and path to make cookie accessible
  • Which library would you prefer would you prefer? Why?

    • react-cookie because it looks closer to what i've learned to this point but there are benefits to either one

Reflection

  1. What are your learning goals after reading and reviewing the class README?