Metadata-Version: 2.5
Name: aa-kanban
Version: 0.5.0
Summary: Kanban Plugin for Alliance Auth
Author-email: Maddog Broekman <maddogbroekman@gmail.com>
License: MIT License
        
        Copyright (c) 2026 Maddog Broekman
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: aa_kanban,allianceauth
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: <3.14,>=3.10
Requires-Dist: allianceauth>=5
Description-Content-Type: text/markdown

# AA Kanban

Alliance Auth plugin for native Kanban boards.

## Features

- **Native Kanban boards** with an intuitive drag-and-drop interface.
- **Permission management** per board (read-only and write groups).
- **Global Discord Webhooks** (Admin panel): Receive notifications when new boards are created.
- **Board-specific Discord Webhooks** (Admin panel): Receive notifications when cards are moved across lists on a specific board.
- **Direct Messages (DMs)**: Discord DM notifications are sent directly to users when they are assigned to or removed from cards (requires the `aadiscordbot` app to be installed and active).

## Installation

```bash
pip install aa-kanban
```

Add the app to your `local.py`:

```python
INSTALLED_APPS += [
    "aa_kanban",
]
```

Run the database migrations:

```bash
python manage.py migrate
```

Gather static files:

```bash
python manage.py collectstatic
```

Restart your supervisor services to load the new code (e.g., gunicorn and celery).

## Discord Webhooks Configuration

To receive updates in your Discord channels, you can configure webhooks in the Django Admin panel:

1. **Global Board Creation Webhook**:
   - Go to **Admin** > **Kanban Settings** > **Global Kanban Settings**.
   - Fill in the **Board creation webhook** field with your Discord Webhook URL. You will receive a message whenever a new board is created.
2. **Board-Specific Card Movement Webhooks**:
   - Go to **Admin** > **Boards** and edit a specific board.
   - Fill in the **Discord webhook cards** field. Any card movements between lists on this board will be posted to this webhook.
