aboutsummaryrefslogtreecommitdiff
path: root/static/api/profile.js
blob: ec633e0e171f96383bfe35ff6a86f7dbf4f312a0 (plain)
1
2
3
4
5
6
7
8
import * as rest from './rest.js';

export async function set(name, birthday) {
	await rest.post('/api/profile/set', {
		full_name: name,
		birthday: birthday,
	});
}