How should I manage users on a website that is developed using ubuntuos and ruby on rails?

Asked 2 years ago, Updated 2 years ago, 41 views

The website is about to be released, and now we are managing the ability to manage users and posts in the form of web pages that appear directly on the browser. However, I think there will be a limit to how to manage it in this way, so I would appreciate it if you could advise on how to manage the database, including user management, on the website developed using ubuntuos and ruby on rails. The db type is postgreSQL.

ubuntu ruby-on-rails aws usermanager

2022-09-21 17:25

1 Answers

1. If you need the tools to manage your PostgreSQL database, Choose one here.

2. If you're more focused on user management, you should first understand what users are and what user management should do, and then implement the user management interface that implements the regulation. We've made it so that only administrator-level users can access it.
If you want to provide that interface as part of the RoR web app you just created, understand the concepts of authentication and authorization
and then find the appropriate gems for apply to your web app.

Approximate Scenario:


2022-09-21 17:25

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.