Haba
12/29/2021, 8:05 PMmounted(){
supabase
.from(`Cards:uid.${this.$store.state.user.id`}) \\ or 'Cards'
.on('*', (payload) => {
console.log('Change received!', payload);
})
.subscribe();
}
Cards is a Table
uid it's a column with user auth id
and this doesn't work for me :/
Any ideas?garyaustin
12/29/2021, 8:27 PM