Skip to content

Commit

Permalink
Updated merged files
Browse files Browse the repository at this point in the history
  • Loading branch information
neketka committed Feb 23, 2024
1 parent e4d7ad4 commit 028bb5d
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
1 change: 0 additions & 1 deletion admin/src/dto/event.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export interface EventDto {
challengeIds: string[];
userFavoriteIds?: string[];
initialOrganizationId?: string;
minimumScore: number;
difficulty: "Easy" | "Normal" | "Hard";
indexable: boolean;
latitude: number;
Expand Down
26 changes: 26 additions & 0 deletions game/lib/generated_plugin_registrant.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
//
// Generated file. Do not edit.
//

// ignore_for_file: directives_ordering
// ignore_for_file: lines_longer_than_80_chars

import 'package:flutter_secure_storage_web/flutter_secure_storage_web.dart';
import 'package:fluttertoast/fluttertoast_web.dart';
import 'package:geolocator_web/geolocator_web.dart';
import 'package:google_sign_in_web/google_sign_in_web.dart';
import 'package:platform_device_id_web/platform_device_id_web.dart';
import 'package:url_launcher_web/url_launcher_web.dart';

import 'package:flutter_web_plugins/flutter_web_plugins.dart';

// ignore: public_member_api_docs
void registerPlugins(Registrar registrar) {
FlutterSecureStorageWeb.registerWith(registrar);
FluttertoastWebPlugin.registerWith(registrar);
GeolocatorPlugin.registerWith(registrar);
GoogleSignInPlugin.registerWith(registrar);
PlatformDeviceIdWebPlugin.registerWith(registrar);
UrlLauncherPlugin.registerWith(registrar);
registrar.registerMessageHandler();
}
4 changes: 2 additions & 2 deletions game/lib/journeys/journeys_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ class _JourneysPageState extends State<JourneysPage> {
0,
1000,
[
EventRewardType.PERPETUAL,
EventRewardType.LIMITED_TIME_EVENT
TimeLimitationType.PERPETUAL,
TimeLimitationType.LIMITED_TIME
],
false,
false,
Expand Down

0 comments on commit 028bb5d

Please sign in to comment.