This commit is contained in:
thosakwe 2017-01-14 08:56:14 -05:00
parent 78865227d1
commit 4ad4180f22
3 changed files with 5 additions and 2 deletions

View file

@ -1,6 +1,6 @@
# angel_framework
[![pub 1.0.0-dev.44](https://img.shields.io/badge/pub-1.0.0--dev.44-red.svg)](https://pub.dartlang.org/packages/angel_framework)
[![pub 1.0.0-dev.45](https://img.shields.io/badge/pub-1.0.0--dev.45-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.

View file

@ -46,6 +46,9 @@ class RequestContext extends Extensible {
/// Any and all files sent to the server with this request.
List<FileUploadInfo> get files => _body.files;
/// The original body bytes sent with this request. May be empty.
List<int> get originalBuffer => _body.originalBuffer ?? [];
/// The URL parameters extracted from the request URI.
Map params = {};

View file

@ -1,5 +1,5 @@
name: angel_framework
version: 1.0.0-dev.44
version: 1.0.0-dev.45
description: Core libraries for the Angel framework.
author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/angel-dart/angel_framework