AA Member Audit

4.3.1 · active · verified Fri Apr 17

aa-memberaudit is an Alliance Auth app designed to provide comprehensive access to Eve Online character data for alliance and corporation management. It enables auditing of character assets, skills, mail, and other details within the Alliance Auth framework. The current version is 4.3.1 and it receives updates as needed, often in conjunction with major Alliance Auth releases.

Common errors

Warnings

Install

Imports

Quickstart

To quickly integrate AA Member Audit into an Alliance Auth project, install the package, add it to your `INSTALLED_APPS` and `urlpatterns`, then run the necessary Django management commands to apply migrations and set up initial permissions.

# 1. Install the package: pip install aa-memberaudit

# 2. Add 'memberaudit' to your Alliance Auth project's INSTALLED_APPS in local.py
# local.py
INSTALLED_APPS += [
    'memberaudit',
]

# 3. Add memberaudit URLs to your Alliance Auth project's urls.py
# urls.py
from django.urls import path, include

urlpatterns = [
    # ... existing paths ...
    path('memberaudit/', include('memberaudit.urls')),
    # ...
]

# 4. Run migrations and initialize permissions
# (Execute these commands in your Alliance Auth virtual environment)
# python manage.py migrate
# python manage.py memberaudit_add_default_roles
# python manage.py memberaudit_init_permissions

view raw JSON →