mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-29 21:14:23 +00:00
6 lines
145 B
TypeScript
6 lines
145 B
TypeScript
export default class UserResolver {
|
|
username(_args, ctx) {
|
|
// For now every user is the current user.
|
|
return ctx.user?.username;
|
|
}
|
|
}
|