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:
282282``` dart
283283Handler middleware(Handler handler) {
284284 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
286286 .use(wheelMiddlewareProvider())
287287 .use(carMiddlewareProvider())
288288}
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ configured with different environments.
1818``` dart
1919Handler middleware(Handler handler) {
2020 return handler
21- .use(provider<CardsRepository >((_) {
21+ .use(provider<DatabaseClient >((_) {
2222 return DatabaseClient(
2323 dbUrl: Platform.environment['DB_URL'],
2424 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:
7575 src = " https://avatars.githubusercontent.com/u/15887627?v=4"
7676 />
7777 </a >
78- <a href = " https://github.com/renancaraujo " aria-label = " About Renan " >
78+ <a href = " https://github.com/marcossevilla " aria-label = " About Marcos " >
7979 <img
80- alt = " Renan Profile Picture"
80+ alt = " Marcos Profile Picture"
8181 class = " rounded-full"
82- src = " https://avatars.githubusercontent.com/u/6718144 ?v=4"
82+ src = " https://avatars.githubusercontent.com/u/31174242 ?v=4"
8383 />
8484 </a >
85- <a href = " https://github.com/marcossevilla " aria-label = " About Marcos " >
85+ <a href = " https://github.com/renancaraujo " aria-label = " About Renan " >
8686 <img
87- alt = " Marcos Profile Picture"
87+ alt = " Renan Profile Picture"
8888 class = " rounded-full"
89- src = " https://avatars.githubusercontent.com/u/31174242 ?v=4"
89+ src = " https://avatars.githubusercontent.com/u/6718144 ?v=4"
9090 />
9191 </a >
9292</div >
@@ -130,7 +130,7 @@ as part of that meeting. Some of the work we have planned includes:
130130
131131## How can you help?
132132
133- - 💬 Come join the community on [ Discord] ( https://discord.gg/dart-frog )
133+ - 💬 Come join the community on [ Discord] ( https://discord.gg/dart-frog ) .
134134- 🙋
135135 [ Open an issue] ( https://github.com/dart-frog-dev/dart_frog/issues/new/choose )
136136 if you encounter a bug or would like a new feature added.
You can’t perform that action at this time.
0 commit comments