File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ But if we change the order of the providers it will not work:
282
282
``` dart
283
283
Handler middleware(Handler handler) {
284
284
return handler
285
- // This won't work because Dart Frog is bottom top
285
+ // This won't work because Dart Frog resolves from bottom to top
286
286
.use(wheelMiddlewareProvider())
287
287
.use(carMiddlewareProvider())
288
288
}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ configured with different environments.
18
18
``` dart
19
19
Handler middleware(Handler handler) {
20
20
return handler
21
- .use(provider<CardsRepository >((_) {
21
+ .use(provider<DatabaseClient >((_) {
22
22
return DatabaseClient(
23
23
dbUrl: Platform.environment['DB_URL'],
24
24
dbUser: Platform.environment['DB_USER'],
Original file line number Diff line number Diff line change @@ -75,18 +75,18 @@ worked on Dart Frog since its inception in April 2022:
75
75
src = " https://avatars.githubusercontent.com/u/15887627?v=4"
76
76
/>
77
77
</a >
78
- <a href = " https://github.com/renancaraujo " aria-label = " About Renan " >
78
+ <a href = " https://github.com/marcossevilla " aria-label = " About Marcos " >
79
79
<img
80
- alt = " Renan Profile Picture"
80
+ alt = " Marcos Profile Picture"
81
81
class = " rounded-full"
82
- src = " https://avatars.githubusercontent.com/u/6718144 ?v=4"
82
+ src = " https://avatars.githubusercontent.com/u/31174242 ?v=4"
83
83
/>
84
84
</a >
85
- <a href = " https://github.com/marcossevilla " aria-label = " About Marcos " >
85
+ <a href = " https://github.com/renancaraujo " aria-label = " About Renan " >
86
86
<img
87
- alt = " Marcos Profile Picture"
87
+ alt = " Renan Profile Picture"
88
88
class = " rounded-full"
89
- src = " https://avatars.githubusercontent.com/u/31174242 ?v=4"
89
+ src = " https://avatars.githubusercontent.com/u/6718144 ?v=4"
90
90
/>
91
91
</a >
92
92
</div >
@@ -130,7 +130,7 @@ as part of that meeting. Some of the work we have planned includes:
130
130
131
131
## How can you help?
132
132
133
- - 💬 Come join the community on [ Discord] ( https://discord.gg/dart-frog )
133
+ - 💬 Come join the community on [ Discord] ( https://discord.gg/dart-frog ) .
134
134
- 🙋
135
135
[ Open an issue] ( https://github.com/dart-frog-dev/dart_frog/issues/new/choose )
136
136
if you encounter a bug or would like a new feature added.
You can’t perform that action at this time.
0 commit comments