Skip to content

Commit

Permalink
fix: command variables are now in defaults.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Davide Arcuri committed Aug 7, 2024
1 parent f299ac2 commit a4f89fb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
* signal for dump/result changes are very verbose [[#1074](https://github.com/LDO-CERT/orochi/issues/1074)]
* replace drf & co. with django-ninja [[#1073](https://github.com/LDO-CERT/orochi/issues/1073)]
* Add experimental support for ARM64
* Add Two-Factor Authentication [[#1099](https://github.com/LDO-CERT/orochi/issues/1099)]
* Admin: Assign multiple dumps to user [[#1082](https://github.com/LDO-CERT/orochi/issues/1082)]
* Multi-arch build and images [[#1098](https://github.com/LDO-CERT/orochi/issues/1098)]
* Custom logo in the login page [[#1083](https://github.com/LDO-CERT/orochi/issues/1083)]
* Manage BodyFile file in timeliner plugin
</details>

<details>
Expand Down
9 changes: 2 additions & 7 deletions orochi/website/management/commands/import_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,8 @@
from django.core.management.base import BaseCommand
from django.db import transaction

from orochi.website.models import (
RESULT_STATUS_NOT_STARTED,
RESULT_STATUS_RUNNING,
Dump,
Result,
UserPlugin,
)
from orochi.website.defaults import RESULT_STATUS_NOT_STARTED, RESULT_STATUS_RUNNING
from orochi.website.models import Dump, Result, UserPlugin
from orochi.website.views import index_f_and_f


Expand Down
9 changes: 2 additions & 7 deletions orochi/website/management/commands/plugins_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,8 @@
from volatility3 import framework
from volatility3.framework import contexts

from orochi.website.models import (
RESULT_STATUS_NOT_STARTED,
Dump,
Plugin,
Result,
UserPlugin,
)
from orochi.website.defaults import RESULT_STATUS_NOT_STARTED
from orochi.website.models import Dump, Plugin, Result, UserPlugin


class Command(BaseCommand):
Expand Down

0 comments on commit a4f89fb

Please sign in to comment.