File tree 2 files changed +10
-3
lines changed
packages/devtools_app/lib/src/shared
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -210,12 +210,12 @@ abstract class StubDevToolsExtensions {
210
210
///
211
211
/// When this flag is true, [debugSurveyMetadata] will be used instead of what
212
212
/// we normally fetch from
213
- /// 'docs.flutter.dev/f/dart- devtools-survey-metadata.json'.
213
+ /// 'https://storage.googleapis.com/flutter-uxr/surveys/ devtools-survey-metadata.json'.
214
214
bool debugSurvey = false ;
215
215
216
216
/// The survey metadata that will be used instead of the live data from
217
- /// 'docs.flutter.dev/f/dart- devtools-survey-metadata.json' when [debugSurvey]
218
- /// is true;
217
+ /// 'https://storage.googleapis.com/flutter-uxr/surveys/ devtools-survey-metadata.json'
218
+ /// when [debugSurvey] is true.
219
219
final debugSurveyMetadata = DevToolsSurvey .fromJson (
220
220
{
221
221
'_comments' : [
Original file line number Diff line number Diff line change @@ -27,6 +27,13 @@ class SurveyService {
27
27
28
28
static const _maxShowSurveyCount = 5 ;
29
29
30
+ /// The URL that we will fetch the DevTools survey metadata from.
31
+ ///
32
+ /// To run new surveys, update the content at
33
+ /// https://github.com/flutter/uxr/blob/master/surveys/devtools-survey-metadata.json.
34
+ ///
35
+ /// This content will be propagated to the storage.googleapis.com domain
36
+ /// automatically.
30
37
static final _metadataUrl = Uri .https (
31
38
'storage.googleapis.com' ,
32
39
'flutter-uxr/surveys/devtools-survey-metadata.json' ,
You can’t perform that action at this time.
0 commit comments