Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
Add HttpService.put and HttpService.delete methods
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavier Cho committed Jul 22, 2014
1 parent 56b8cc9 commit 5b54cec
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/scala/com/greencatsoft/angularjs/HttpService.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ trait HttpService extends js.Object {
def post(url: String, data: js.Any): HttpPromise = ???

def post(url: String, data: js.Any, config: HttpConfig): HttpPromise = ???

def put(url: String, data: js.Any): HttpPromise = ???

def put(url: String, data: js.Any, config: HttpConfig): HttpPromise = ???

def delete(url: String, data: js.Any): HttpPromise = ???

def delete(url: String, data: js.Any, config: HttpConfig): HttpPromise = ???
}

object HttpService {
Expand Down

0 comments on commit 5b54cec

Please sign in to comment.