mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-08-01 21:30:16 +02:00
Added GitHub PAT support
This commit is contained in:
@@ -122,4 +122,12 @@ class SettingsProvider with ChangeNotifier {
|
||||
prefs?.setBool('showAppWebpage', show);
|
||||
notifyListeners();
|
||||
}
|
||||
|
||||
String? getSettingString(String settingId) {
|
||||
return prefs?.getString(settingId);
|
||||
}
|
||||
|
||||
void setSettingString(String settingId, String value) {
|
||||
prefs?.setString(settingId, value);
|
||||
}
|
||||
}
|
||||
|
@@ -135,6 +135,7 @@ abstract class AppSource {
|
||||
AppNames getAppNames(String standardUrl);
|
||||
late List<List<GeneratedFormItem>> additionalDataFormItems;
|
||||
late List<String> additionalDataDefaults;
|
||||
late List<GeneratedFormItem> moreSourceSettingsFormItems;
|
||||
}
|
||||
|
||||
abstract class MassAppSource {
|
||||
|
Reference in New Issue
Block a user