API helpers: rename createJournalEntry -> addJournalEntry.
Following the change from the previous commit.master
parent
9b7f24eb8a
commit
941b47b59a
|
@ -36,7 +36,7 @@ import { fetchEntries } from '../store/actions';
|
|||
|
||||
import { SyncInfo } from '../SyncGate';
|
||||
|
||||
import { createJournalEntry } from '../etesync-helpers';
|
||||
import { addJournalEntry } from '../etesync-helpers';
|
||||
|
||||
import { syncEntriesToItemMap, syncEntriesToEventItemMap, syncEntriesToTaskItemMap } from '../journal-processors';
|
||||
|
||||
|
@ -261,7 +261,7 @@ class Pim extends React.PureComponent {
|
|||
}
|
||||
|
||||
const saveEvent = store.dispatch(
|
||||
createJournalEntry(
|
||||
addJournalEntry(
|
||||
this.props.etesync, this.props.userInfo, journal,
|
||||
prevUid, action, item.toIcal()));
|
||||
(saveEvent as any).then(() => {
|
||||
|
@ -296,7 +296,7 @@ class Pim extends React.PureComponent {
|
|||
}
|
||||
|
||||
const deleteItem = store.dispatch(
|
||||
createJournalEntry(
|
||||
addJournalEntry(
|
||||
this.props.etesync, this.props.userInfo, journal,
|
||||
prevUid, action, item.toIcal()));
|
||||
(deleteItem as any).then(() => {
|
||||
|
|
|
@ -3,7 +3,7 @@ import * as EteSync from './api/EteSync';
|
|||
import { CredentialsData, UserInfoData } from './store';
|
||||
import { addEntries } from './store/actions';
|
||||
|
||||
export function createJournalEntry(
|
||||
export function addJournalEntry(
|
||||
etesync: CredentialsData,
|
||||
userInfo: UserInfoData,
|
||||
journal: EteSync.Journal,
|
||||
|
|
Loading…
Reference in New Issue