2020-07-04 18:14:05 -05:00
2020-06-23 17:33:44 -05:00

Project Citadel - An open source project management tool

Citadel

Overview

  • TODO

Features

TODO

Browser support

Installation

License

Authentication

Uses a refresh_token and access_token system.

The refresh_token is an opaque UUID based token. The access_token is a JWT token containing several claims such as sub & roles

The refresh_token is stored in a database and is long lived (24 hours). It is sent to the client as a cookie set to be HttpOnly.

The access_token is not stored in the database & is only stored in memory on the client side. It is short lived (5 minutes).

The access_token is used to authenticate all endpoints except endpoints under /auth

The access_token is refreshed using the refresh_token through the /auth/refresh_token endpoint. This endpoint takes in the refresh_token set VIA a cookie header & returns a new refresh_token & access_token if the refresh_token is still valid. The old refresh_token is invalidated.

Description
An open source project management tool with Kanban boards
Readme 5.7 MiB
Languages
TypeScript 83.1%
Go 16.2%
JavaScript 0.2%
PLpgSQL 0.2%
HTML 0.2%