Project

General

Profile

Actions

Feature #23307

open

Get which auth_source_id of a user

Added by Roger Mårtensson over 7 years ago. Updated about 4 years ago.

Status:
New
Priority:
Normal
Assignee:
-
Category:
REST API
Start date:
Due date:
% Done:

0%

Estimated time:
Resolution:

Description

it would've been nice to be able to get which auth_source_id a given user has through the REST API. A nice complement to when creating user where it is possible to set the auth_source_id.


Files


Related issues

Related to Redmine - Feature #23306: Support for authentication sources in REST APINew

Actions
Related to Redmine - Feature #36659: Add "auth_source_id" to GET request for Endpoint /users.:formatNew

Actions
Actions #1

Updated by Toshi MARUYAMA over 7 years ago

  • Related to Feature #23306: Support for authentication sources in REST API added
Actions #2

Updated by Anonymous almost 6 years ago

I agree. This feature is also useful for admin scripts which needs to distinguish between "external" and LDAP users.

I attached a patch for this feature. auth_source_id only gets visible for admin users in it, as I do not see the need for standard users.

Actions #3

Updated by Anonymous almost 6 years ago

toshio harita MARUYAMA : Do you have an opinion on this issue?

Actions #4

Updated by Roger Mårtensson about 5 years ago

What is the status of this issue?

Actions #5

Updated by Go MAEDA about 5 years ago

  • Target version set to Candidate for next major release
Actions #6

Updated by Go MAEDA about 4 years ago

I think the response should include not only id but also name. Maybe the response does not include "auth_source" if the user uses internal authentication.

{
  "user": {
    "id": 1,
    "login": "admin",
    "firstname": "Redmine",
    "lastname": "Admin",
    "created_on": "2006-07-19T17:12:21Z",
    "last_login_on": "2019-09-06T06:37:53Z",
    "auth_source": {
      "id": 1,
      "name": "LDAP test server" 
    }
  }
}
Actions #7

Updated by Go MAEDA about 4 years ago

Here is a patch to add auth_source to the response of GET /users/:id.(xml|json). auth_source is included only when the users auth_source is not nil and the current user is an administrator.

    "auth_source": {
      "id": 1,
      "name": "LDAP test server" 
    },
Actions #8

Updated by Go MAEDA almost 2 years ago

  • Related to Feature #36659: Add "auth_source_id" to GET request for Endpoint /users.:format added
Actions

Also available in: Atom PDF