mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 23:01:29 +03:00
b83c5a15eb
- Close https://github.com/enso-org/cloud-v2/issues/1604 - Add ability to track backend calls - Remove inconsistent integration test code - Add skeleton classes for settings pages # Important Notes None
12 lines
475 B
TypeScript
12 lines
475 B
TypeScript
/** @file Actions for the "user" tab of the "settings" page. */
|
|
import { goToPageActions, type GoToPageActions } from './goToPageActions'
|
|
import PageActions from './PageActions'
|
|
|
|
/** Actions common to all settings pages. */
|
|
export default class BaseSettingsTabActions<Context> extends PageActions<Context> {
|
|
/** Actions for navigating to another page. */
|
|
get goToPage(): Omit<GoToPageActions<Context>, 'settings'> {
|
|
return goToPageActions(this.step.bind(this))
|
|
}
|
|
}
|