-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FR] Add creation date to user listing #29772
Comments
What qualifies as user creation ? The query above (hacky) implies it's the time of the first login, whenever the skeleton was copied. This would be the same date like the last login which is already available in the settings page. (see bottom-left options to display hidden columns) It could also mean:
Any specific use-case, reason ? |
Had a chat with @hodyroff and it turns out I mixed up "first login" with "last login". Proposal:
|
Now to find when the formerly existing users logged in the first time:
|
Can't this be a separate app? ;-) |
also expose over provisioning API as read-only field |
Hi, Our customer wants insights in whether or not created users (in the local database, no AD/LDAP connections) in say the last 2-3 months actually signed in once. Now I can check the last logon date of course, but that doesn't tell him when they were created at all. Don't know all the existing queries against the database, but adding a timestamp field to oc_users, for example as: created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, would probably fix this easily. |
This issue has been automatically closed. |
https://demo.owncloud.org/settings/users
Add to the settings:
"Show user creation date"
Get date from the activity for the user.
Idea: SELECT timestamp FROM oc_activity WHERE file LIKE '%ownCloud Manual.pdf%' AND user=myuser
Add a coloumn which shows the date not the since.
The text was updated successfully, but these errors were encountered: