Board

Method Domain Path Description
GET LuaChad /board get all boards

Example output

[
    {
        "abbreviation": "c",
        "height": 37,
        "reply_limit": 5,
        "name": "all",
        "thread_limit": 5,
        "description": "asdfasdf"
    }
]

Method Domain Path Description
POST LuaChad /board add a board

Authentication

Http header Content Description
4chad-janny-access-token $JWT contains privileges
4chad-janny-id-token $JWT contains user profile

Example body

{
    "abbreviation": "b",
    "name": "random",
    "description": "random",
    "start_height": 0,
    "thread_limit": 5,
    "reply_limit": 5
}

Example output

{
    "abbreviation": "b",
    "description": "random",
    "reply_limit": 5,
    "start_height": 0,
    "thread_limit": 5,
    "name": "random"
}