GITLAB
kubaninc
/ dingtalk
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
3c6d9818d88ef4e3a98443b8fcd6f619e72347e4
Authored by
Jeff Lai
2016-03-18 15:43:49 +0800
1 parent
a514d239
Exists in
master
Add message api
Showing
1 changed file
with
14 additions
and
0 deletions
Show diff stats
lib/dingtalk/api/message.rb
Side-by-side Diff
Inline Diff
lib/dingtalk/api/message.rb
0 → 100644
Diff comments
View file @
3c6d981
@@ -0,0 +1,14 @@
@@ -0,0 +1,14 @@
1
+module Dingtalk
2
+ module Api
3
+ class Message < Base
4
+ def send(params)
5
+ http_post('send', params)
6
+ end
7
+
8
+ private
9
+ def base_url
10
+ 'message'
11
+ end
12
+ end
13
+ end
14
+end