1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-13 09:46:22 +00:00

fix typo shareWith -> shareVia

This commit is contained in:
Rokt33r
2015-12-13 22:46:59 +09:00
parent 70fc0afbc4
commit 529c27aed5
2 changed files with 8 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ export const SERVER_URL = 'https://b00st.io/'
export const request = superagentPromise(superagent, Promise)
export function shareWithPublicURL (input) {
export function shareViaPublicURL (input) {
return request
.post(SERVER_URL + 'apis/share')
// .set({
@@ -18,5 +18,5 @@ export function shareWithPublicURL (input) {
export default {
SERVER_URL,
shareWithPublicURL
shareViaPublicURL
}