There is no tab for Scrum board in Jira Cloud to set Working days. Isn't it available in current version?
I've found https://support.atlassian.com/jira-software-cloud/docs/configure-working-days/
but it is not relevant:
Also "Remaining days" of sprint on Scrum board are shown as 5, but actually there are 7 days left.
Hi Alexey, I´m using below query
SELECT d.directory_name AS "Directory",
u.user_name AS "USER",
from_unixtime((cast(attribute_value AS UNSIGNED)/1000)) AS "Last Login"
FROM cwd_user u
JOIN (
SELECT DISTINCT child_name
FROM cwd_membership m
JOIN licenserolesgroup gp ON m.parent_name = gp.GROUP_ID
) AS m ON m.child_name = u.user_name
JOIN (
SELECT *
FROM cwd_user_attributes
WHERE attribute_name = 'login.lastLoginMillis'
) AS a ON a.user_id = u.id
JOIN cwd_directory d ON u.directory_id = d.id
ORDER BY "Last Login" DESC;
But I´m also getting results for people who has login today, What should I change to get only people not having login for last 18 month?
Hello,
You can get users last login date and select only users, who logged in to Jira for more than 18 months ago.
You could find more info here:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have a look at the Last Login value type. And add a where clause to your query
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.