Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove report bug feature #1099

Merged
merged 2 commits into from
Nov 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions lib/features/app/analytics/remote_config_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import 'package:notredame/utils/locator.dart';
class RemoteConfigService {
static const String tag = "RemoteConfigService";
static const _serviceIsDown = "service_is_down";
static const _ghApiToken = "GH_API_TOKEN";

// Privacy policy
static const _privacyPolicyToggle = "privacy_policy_toggle";
Expand Down Expand Up @@ -41,7 +40,6 @@ class RemoteConfigService {
final FirebaseRemoteConfig _remoteConfig = FirebaseRemoteConfig.instance;
final defaults = <String, dynamic>{
_serviceIsDown: false,
_ghApiToken: "",
_privacyPolicyURL: "",
_dashboardMsgFr: "",
_dashboardMsgEn: "",
Expand All @@ -68,11 +66,6 @@ class RemoteConfigService {
return _remoteConfig.getBool(_serviceIsDown);
}

String get ghApiToken {
fetch();
return _remoteConfig.getString(_ghApiToken);
}

bool get dashboardMessageActive {
fetch();
return _remoteConfig.getBool(_dashboardMsgToggle);
Expand Down
134 changes: 0 additions & 134 deletions lib/features/app/integration/github_api.dart

This file was deleted.

5 changes: 0 additions & 5 deletions lib/features/app/navigation/router.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import 'package:notredame/features/ets/quick-link/widgets/security-info/security
import 'package:notredame/features/more/about/about_view.dart';
import 'package:notredame/features/more/contributors/contributors_view.dart';
import 'package:notredame/features/more/faq/faq_view.dart';
import 'package:notredame/features/more/feedback/feedback_view.dart';
import 'package:notredame/features/more/more_view.dart';
import 'package:notredame/features/more/settings/choose_language_view.dart';
import 'package:notredame/features/more/settings/settings_view.dart';
Expand Down Expand Up @@ -122,10 +121,6 @@ Route<dynamic> generateRoute(RouteSettings routeSettings) {
return MaterialPageRoute(
settings: RouteSettings(name: routeSettings.name),
builder: (_) => ContributorsView());
case RouterPaths.feedback:
return MaterialPageRoute(
settings: RouteSettings(name: routeSettings.name),
builder: (_) => FeedbackView());
case RouterPaths.about:
return MaterialPageRoute(
settings: RouteSettings(name: routeSettings.name),
Expand Down
1 change: 0 additions & 1 deletion lib/features/app/navigation/router_paths.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ class RouterPaths {
static const String more = "/more";
static const String settings = "/more/settings";
static const String contributors = "/more/contributors";
static const String feedback = "/more/feedback";
static const String about = "/more/about";
static const String chooseLanguage = "/discovery/choose-language";
static const String serviceOutage = "/service/outage";
Expand Down
1 change: 0 additions & 1 deletion lib/features/more/feedback/feedback_type.dart

This file was deleted.

Loading
Loading