Skip to content

Latest commit

 

History

History
62 lines (52 loc) · 1.42 KB

user.md

File metadata and controls

62 lines (52 loc) · 1.42 KB

Types

This is a module for Project Forge. It provides classes for representing persistent user records and wires them throughout the application

https://github.com/kyleu/projectforge/tree/master/module/user

License

Licensed under CC0

Usage

  • A user profile is provided in the session, new users are saved in the database

A default implementation of a User is provided, saving records on the filesystem. Either make it your own by editing the files, or have Project Forge generate one by making a new export model file:

./.projectforge/export/models/user.json (database and export modules are required)

{
  "name": "user",
  "package": "user",
  "description": "A user of the system",
  "icon": "profile",
  "columns": [
    {
      "name": "id",
      "type": "uuid",
      "pk": true,
      "search": true
    },
    {
      "name": "name",
      "type": "string",
      "search": true,
      "tags": [
        "title"
      ]
    },
    {
      "name": "created",
      "type": "timestamp",
      "sqlDefault": "now()",
      "tags": [
        "created"
      ]
    },
    {
      "name": "updated",
      "type": "timestamp",
      "nullable": true,
      "sqlDefault": "now()",
      "tags": [
        "updated"
      ]
    }
  ]
}

The fields "id" and "name" are required, but feel free to customize this model for your purposes