diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d6ac4aa2..97f41641c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Update DirectMessageController, add 72 hour delay for new accounts before they can send a DM ([61d105fd](https://github.com/pixelfed/pixelfed/commit/61d105fd)) - Update AdminCuratedRegisterController, increase message length from 1000 to 3000 ([9a5e3471](https://github.com/pixelfed/pixelfed/commit/9a5e3471)) - Update ApiV1Controller, add pe (pixelfed entity) support to /api/v1/statuses/{id}/context endpoint ([d645d6ca](https://github.com/pixelfed/pixelfed/commit/d645d6ca)) +- Update Admin Curated Onboarding, add select-all/mass action operations ([b22cac94](https://github.com/pixelfed/pixelfed/commit/b22cac94)) - ([](https://github.com/pixelfed/pixelfed/commit/)) ## [v0.12.1 (2024-05-07)](https://github.com/pixelfed/pixelfed/compare/v0.12.0...v0.12.1) diff --git a/resources/views/admin/curated-register/index.blade.php b/resources/views/admin/curated-register/index.blade.php index 5ff8c4dd5..a1564b971 100644 --- a/resources/views/admin/curated-register/index.blade.php +++ b/resources/views/admin/curated-register/index.blade.php @@ -20,10 +20,32 @@ @include('admin.curated-register.partials.nav') @if($records && $records->count()) +
+ @if(in_array($filter, ['all', 'open', 'awaiting', 'responses'])) @@ -37,6 +59,12 @@ @foreach($records as $record) +
+
+ + +
+
ID Username
+
+ + +
+
#{{ $record->id }} @@ -84,3 +112,200 @@ @include('admin.curated-register.partials.not-enabled') @endif @endsection + +@push('scripts') + +@endpush