12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
'use server';
|
|
|
|
import { revalidatePath } from 'next/cache';
|
|
|
|
export async function becomeMaster() {
|
|
revalidatePath('/profile');
|
|
}
|
|
|
|
export async function updateName() {
|
|
revalidatePath('/profile');
|
|
}
|