Questions tagged [user-management]

Generally used for a component of the software system - which is responsible for creating, managing and controlling users. This includes classical "authentication and authorization" terms too.

537 questions
3
votes
3 answers

Best starting point for a website with user management functionality

I'm about to start creating a new website that has standard user management (customers login and handling (change customer details etc) + my own functionality. I'm looking for the most efficient way to do it. I know PHP/CSS/Jquery quite well. I have…
Nir
  • 24,619
  • 25
  • 81
  • 117
3
votes
3 answers

Handling different user types in react native

Many of the applications that I've seen or browsed through need to handle multiple different types of users whereby all users login / signup on one UI For example in an E-commerce app you would have marketplace operators, sellers and buyers These…
sheppard
  • 67
  • 8
3
votes
2 answers

Symfony 4: Logout active user by admin

The admin user in my Symfony 4.2 application should be able to log out another (non-admin) user. I created a user login system depending on the Symfony security-bundle (https://symfony.com/doc/current/security/form_login_setup.html). Now I am…
igi
  • 125
  • 1
  • 15
3
votes
1 answer

Creating users in express-gateway

Express-gateway has its own consumer management system and an Admin Api for managing user creation, updating, and so on. According to docs the Admin Api is for internal use and discourages exposing it publicly. If that's the case, then how does a…
1192805
  • 988
  • 2
  • 10
  • 26
3
votes
1 answer

Spring Security: Find Groups A User Belongs To?

How do I find groups a user belongs to? I can use GroupManager.findAllGroups() then loop the group with GroupManager.findUsersInGroup(java.lang.String groupName). However, this is expensive. Do we have any straight forward method? Thanks.
Lee Chee Kiam
  • 11,450
  • 10
  • 65
  • 87
3
votes
1 answer

Rails: Delete User without losing associations (or other methods of letting Users leave)

I have a Rails application that lets Users create various "judgements", everything is a bit interweaved, we have several classes that are connected to the User class. When I let users "destroy" their account, obviously the associations they had will…
slhck
  • 36,575
  • 28
  • 148
  • 201
3
votes
2 answers

Modeling user account referring to different entities

I'm starting a new project which will act as an authorization/authentication server and a simple user management for certain type of users. A user can be a HelpDeskResponsible, GroupManager, Employee, Customer and more. All these groups members will…
3
votes
1 answer

How to manage user privileges in Jenkins?

In addition to running any job (but may want to restrict that as per job), I would like my user to be able to add/modify new jobs but not modify or delete other users' jobs. I went into security setting but didn't see anything that would do that.
amphibient
  • 29,770
  • 54
  • 146
  • 240
3
votes
1 answer

MarkLogic User Management with Last-Login database

I'm trying to manage LDAP authenticated users on MarkLogic. I want to be able to check the Last-login value for each user. I would like to do this from the REST interface. However, MarkLogic will only return a document that shows my administrative…
mikel
  • 113
  • 7
3
votes
1 answer

Spring MVC: components for user registration?

I'm creating my first Spring MVC app on Tomcat 6. Certain pages will be browseable by all and other pages will be restricted to registered users. I'm looking for advice on how best to configure app security to support this. Coming from ASP.NET,…
Sajee
  • 4,317
  • 14
  • 46
  • 54
3
votes
2 answers

How could I use ApplicationUserManager in ASP.net?

I have created a controller named ProfileContoller in my application. In this controller I need to creat an instance of ApplicationUserManager however I don't know how to create a new instance of it. I've tried code below: private…
H. Pauwelyn
  • 13,575
  • 26
  • 81
  • 144
3
votes
1 answer

PostgreSQL - managing user's contacts - unidirectional or bidirectional relation better?

I'm doing some research on how to use Vaadin+JPA+EclipseLink+PostreSQL for the development of a web application for sharing pictures and how well is this combination suited for this purpose. I'm struggling with the decision on the management of user…
rbaleksandar
  • 8,713
  • 7
  • 76
  • 161
3
votes
1 answer

Yii2.0 user management migration failed

Installed Yii 2.0, need to install Yii2.0 User management extension. When I run migrate command it shows the following error. I kept webvimark folder inside vendor folder. If I do anything wrong, please guide me in a right way. Also I had tried by…
ABI
  • 1,536
  • 18
  • 38
3
votes
2 answers

SQL Server 2005/2008: Identify current user

I have a web application, which is using a SQL Server 2005 database. My problem is, that the application has no role management. So the application always accesses the database with one default user. But now I have to save and access a value only…
Torben
  • 1,290
  • 5
  • 22
  • 41
3
votes
1 answer

Can I prevent a batch file to be executed by more than 1 user at the same time

I have a batch file which can update a web project and clean/rebuild it. I made it executable for network users. Now I want to make the batch executable only by one user at the same time. Like synchronize object in programming languages. Is there a…