Initial commit: Flutter app + PHP/MySQL backend on Hostinger
Replaces Firebase with a self-hosted PHP/MySQL API served from winded.prymsolutions.com. Includes full backend (schema, auth, events, teams, brackets, suggestions, stats, media, file upload) and updated Flutter repositories and domain models. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'admin_events_notifier.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
String _$adminEventsStreamHash() => r'33d6cd9ec02f788540270db08f0933e9c46c72e8';
|
||||
|
||||
/// Live Firestore-backed stream of every event in the system, used by the
|
||||
/// admin panel. The public-facing [eventsStreamProvider] still emits mocked
|
||||
/// data; admins read straight through to the real collection.
|
||||
///
|
||||
/// Copied from [adminEventsStream].
|
||||
@ProviderFor(adminEventsStream)
|
||||
final adminEventsStreamProvider =
|
||||
AutoDisposeStreamProvider<List<Event>>.internal(
|
||||
adminEventsStream,
|
||||
name: r'adminEventsStreamProvider',
|
||||
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
|
||||
? null
|
||||
: _$adminEventsStreamHash,
|
||||
dependencies: null,
|
||||
allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
@Deprecated('Will be removed in 3.0. Use Ref instead')
|
||||
// ignore: unused_element
|
||||
typedef AdminEventsStreamRef = AutoDisposeStreamProviderRef<List<Event>>;
|
||||
String _$adminEventsNotifierHash() =>
|
||||
r'd39031c4b14120bba5d4ea0baeed2661eb336ec0';
|
||||
|
||||
/// Imperative wrapper around the events repository write methods. The notifier
|
||||
/// is `AsyncValue<void>`-shaped so screens can wire it up the same way as the
|
||||
/// existing auth/suggestions notifiers.
|
||||
///
|
||||
/// Copied from [AdminEventsNotifier].
|
||||
@ProviderFor(AdminEventsNotifier)
|
||||
final adminEventsNotifierProvider =
|
||||
AutoDisposeAsyncNotifierProvider<AdminEventsNotifier, void>.internal(
|
||||
AdminEventsNotifier.new,
|
||||
name: r'adminEventsNotifierProvider',
|
||||
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
|
||||
? null
|
||||
: _$adminEventsNotifierHash,
|
||||
dependencies: null,
|
||||
allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
typedef _$AdminEventsNotifier = AutoDisposeAsyncNotifier<void>;
|
||||
// ignore_for_file: type=lint
|
||||
// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member, deprecated_member_use_from_same_package
|
||||
Reference in New Issue
Block a user