aweft

recipes/full-stack/backend/modules/board/Notice.ts

One file of recipes/full-stack, at commit 9a5bb24.

// board/Notice: `public: true`, so a page reaches it before anyone has signed in.

export default () => ({
	public: true,
	call: () => 'the board is open to everyone',
});