mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
- Remove the kwargs from the call to update_libraries - Add placeholder task for commit counts - Refactor to simplify the commit count logic and pull it out of the management command and into a task - Adjust schedule - Add a separate task to update current month commit counts - Add CommitData to admin, and add functionality to update the CommitData from the admin via button, like other admin features
17 lines
367 B
Python
17 lines
367 B
Python
# Generated by Django 4.2.2 on 2024-02-12 19:23
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("libraries", "0017_merge_20230919_2029"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="commitdata",
|
|
options={"verbose_name_plural": "Commit Data"},
|
|
),
|
|
]
|