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

One file of [`recipes/full-stack`](/docs/recipes/full-stack), at commit `9a5bb24`.

```ts
// 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',
});
```
