mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
feat: Hook up edit Stripe settings form
This commit is contained in:
@@ -129,19 +129,26 @@ export function closeSidebarSubmenu() {
|
||||
export function addAutofill(autofillRef: number, payload: any) {
|
||||
return {
|
||||
type: t.ADD_AUTOFILL_REF,
|
||||
payload: { ref: autofillRef, payload }
|
||||
}
|
||||
payload: { ref: autofillRef, payload },
|
||||
};
|
||||
}
|
||||
|
||||
export function removeAutofill(autofillRef: number) {
|
||||
return {
|
||||
type: t.REMOVE_AUTOFILL_REF,
|
||||
payload: { ref: autofillRef}
|
||||
}
|
||||
payload: { ref: autofillRef },
|
||||
};
|
||||
}
|
||||
|
||||
export function resetAutofill() {
|
||||
return {
|
||||
type: t.RESET_AUTOFILL_REF,
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
export function changePreferencesPageTitle(pageTitle: string) {
|
||||
return {
|
||||
type: 'CHANGE_PREFERENCES_PAGE_TITLE',
|
||||
pageTitle,
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user