Inject
This commit is contained in:
parent
e1684330a9
commit
cdfc734271
3 changed files with 8 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
# angel_framework
|
||||
|
||||
[![pub 1.0.0-dev.37](https://img.shields.io/badge/pub-1.0.0--dev.37-red.svg)](https://pub.dartlang.org/packages/angel_framework)
|
||||
[![pub 1.0.0-dev.38](https://img.shields.io/badge/pub-1.0.0--dev.38-red.svg)](https://pub.dartlang.org/packages/angel_framework)
|
||||
[![build status](https://travis-ci.org/angel-dart/framework.svg)](https://travis-ci.org/angel-dart/framework)
|
||||
|
||||
Core libraries for the Angel Framework.
|
|
@ -34,7 +34,6 @@ class Controller {
|
|||
"All controllers must carry an @Expose() declaration.");
|
||||
}
|
||||
|
||||
|
||||
final routable = new Routable(debug: true);
|
||||
configureRoutes(routable);
|
||||
|
||||
|
@ -80,6 +79,12 @@ class Controller {
|
|||
if (req.injections.containsKey(name)) {
|
||||
args.add(req.injections[name]);
|
||||
continue;
|
||||
} else if (name == "req") {
|
||||
args.add(req);
|
||||
continue;
|
||||
} else if (name == "res") {
|
||||
args.add(res);
|
||||
continue;
|
||||
}
|
||||
|
||||
final type = parameter.type.reflectedType;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: angel_framework
|
||||
version: 1.0.0-dev.37
|
||||
version: 1.0.0-dev.38
|
||||
description: Core libraries for the Angel framework.
|
||||
author: Tobe O <thosakwe@gmail.com>
|
||||
homepage: https://github.com/angel-dart/angel_framework
|
||||
|
|
Loading…
Reference in a new issue