koho 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/koho/version.rb +1 -1
- data/lib/koho.rb +3 -3
- metadata +1 -1
data/lib/koho/version.rb
CHANGED
data/lib/koho.rb
CHANGED
@@ -43,7 +43,7 @@ module Koho
|
|
43
43
|
|
44
44
|
class Invoices < Koho::Client
|
45
45
|
|
46
|
-
base_uri
|
46
|
+
base_uri API_BASE_URL+'/invoices'
|
47
47
|
|
48
48
|
|
49
49
|
def list
|
@@ -67,7 +67,7 @@ module Koho
|
|
67
67
|
|
68
68
|
class Customers < Koho::Client
|
69
69
|
|
70
|
-
base_uri
|
70
|
+
base_uri API_BASE_URL+'/customers'
|
71
71
|
|
72
72
|
|
73
73
|
def list
|
@@ -91,7 +91,7 @@ module Koho
|
|
91
91
|
|
92
92
|
class Contracts < Koho::Client
|
93
93
|
|
94
|
-
base_uri
|
94
|
+
base_uri API_BASE_URL+'/contracts'
|
95
95
|
|
96
96
|
|
97
97
|
def list
|