> For the complete documentation index, see [llms.txt](https://docs.novel.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.novel.dev/novel-server/users.md).

# Users

## Data Model

## Sign up

## User Lifecycle

## Activities

An account may have activities recorded against actions made to it.

This is stored in the `account_events` model. It is also available under the `novel/activity` module.

{% code title="feature.ts" lineNumbers="true" %}

```typescript
import * as activity from 'novel/activity';

await activity.account('SOMETHING_NEW', 'Something happened');
```

{% endcode %}

This will get the account ID through the request context.

## Changelog

* 2024-12-20 - Initial Documentation
