Newer
Older
export function isRegistered(user, event) {
if (!user) return false;
const matches = event.signUps.filter((signUp) => signUp.user.id === user.id);
To receive notifications about scheduled maintenance, please subscribe to the mailing-list gitlab-operations@sympa.ethz.ch. You can subscribe to the mailing-list at https://sympa.ethz.ch
export function isRegistered(user, event) {
if (!user) return false;
const matches = event.signUps.filter((signUp) => signUp.user.id === user.id);