Skip to content

Commit

Permalink
Merge branch 'master' into version1
Browse files Browse the repository at this point in the history
  • Loading branch information
Neil Goodman committed Mar 3, 2014
1 parent 9b0ebb7 commit eadfb99
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ A number of helper methods exist that abstract away the details of the Magic ope
- `get_server_info`
- `get_task(userid, transaction_id)`
- `get_task_list(userid = nil, since = nil)`
- `last_logs`
- `save_rx(userid, patientid, rxxml)`
- `save_task(userid, patientid, task_type = nil, target_user = nil, work_object_id = nil, comments = nil)`
- `save_task_status(userid, transaction_id = nil, param = nil, delegate_id = nil, comment = nil)`
Expand Down
7 changes: 7 additions & 0 deletions lib/allscripts_unity_client/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,13 @@ def get_vitals
raise NotImplementedError, "GetVitals magic action not implemented"
end

def last_logs
magic_parameters = {
:action => "LastLogs"
}
magic(magic_parameters)
end

def make_task
raise NotImplementedError, "MakeTask magic action not implemented"
end
Expand Down
2 changes: 1 addition & 1 deletion lib/allscripts_unity_client/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module AllscriptsUnityClient
VERSION = "1.3.3"
VERSION = "1.3.4"
end

0 comments on commit eadfb99

Please sign in to comment.