DU4L / CTFNote

CTFNote is a collaborative tool aiming to help CTF teams to organise their work.
GNU General Public License v3.0
0 stars 0 forks source link

Add last active date to user profile #16

Closed frereit closed 2 years ago

frereit commented 2 years ago

fixes (partially) #3

Note that the generated files changed slightly because I changed the database layout, so I had to regenerate them. This means that front/graphql.schema.json and front/src/generated/graphql.ts contains a lot of changes, but these were all done automatically with a simple yarn codegen

This adds a new column "Last active" to the Users admin view.

changes

api

Note that ctfnote.profile is SELECT-able by any logged in users. This means that using the API any user can view the last active date of any other users. I can change this if needed, but I since many forums also have a public "last online" date, I thought I'd make this internally public as well.

front