Skip to content

Commit 96bc393

Browse files
committed
Restore some whitespace
Optimizes diff readability.
1 parent c145ed8 commit 96bc393

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

src/features/academy/AcademyActions.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ export const createCourse = createAction(
1313
CREATE_COURSE,
1414
(courseConfig: UpdateCourseConfiguration) => ({ payload: courseConfig })
1515
);
16+
1617
export const addNewUsersToCourse = createAction(
1718
ADD_NEW_USERS_TO_COURSE,
1819
(users: UsernameRoleGroup[], provider: string) => ({ payload: { users, provider } })
1920
);
21+
2022
export const addNewStoriesUsersToCourse = createAction(
2123
ADD_NEW_STORIES_USERS_TO_COURSE,
2224
(users: NameUsernameRole[], provider: string) => ({ payload: { users, provider } })

src/features/groundControl/GroundControlActions.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,14 @@ export const changeDateAssessment = createAction(
1111
CHANGE_DATE_ASSESSMENT,
1212
(id: number, openAt: string, closeAt: string) => ({ payload: { id, openAt, closeAt } })
1313
);
14+
1415
export const deleteAssessment = createAction(DELETE_ASSESSMENT, (id: number) => ({ payload: id }));
16+
1517
export const publishAssessment = createAction(
1618
PUBLISH_ASSESSMENT,
1719
(togglePublishTo: boolean, id: number) => ({ payload: { id, togglePublishTo } })
1820
);
21+
1922
export const uploadAssessment = createAction(
2023
UPLOAD_ASSESSMENT,
2124
(file: File, forceUpdate: boolean, assessmentConfigId: number) => ({

src/features/sourceRecorder/SourceRecorderActions.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,24 +36,28 @@ export const saveSourcecastData = createAction(
3636
}
3737
})
3838
);
39+
3940
export const setCurrentPlayerTime = createAction(
4041
SET_CURRENT_PLAYER_TIME,
4142
(playerTime: number, workspaceLocation: WorkspaceLocation) => ({
4243
payload: { playerTime, workspaceLocation }
4344
})
4445
);
46+
4547
export const setCodeDeltasToApply = createAction(
4648
SET_CODE_DELTAS_TO_APPLY,
4749
(deltas: CodeDelta[], workspaceLocation: WorkspaceLocation) => ({
4850
payload: { deltas, workspaceLocation }
4951
})
5052
);
53+
5154
export const setInputToApply = createAction(
5255
SET_INPUT_TO_APPLY,
5356
(inputToApply: Input, workspaceLocation: WorkspaceLocation) => ({
5457
payload: { inputToApply, workspaceLocation }
5558
})
5659
);
60+
5761
export const setSourcecastData = createAction(
5862
SET_SOURCECAST_DATA,
5963
(
@@ -65,12 +69,14 @@ export const setSourcecastData = createAction(
6569
workspaceLocation: WorkspaceLocation
6670
) => ({ payload: { title, description, uid, audioUrl, playbackData, workspaceLocation } })
6771
);
72+
6873
export const setSourcecastDuration = createAction(
6974
SET_SOURCECAST_PLAYBACK_DURATION,
7075
(duration: number, workspaceLocation: WorkspaceLocation) => ({
7176
payload: { duration, workspaceLocation }
7277
})
7378
);
79+
7480
export const setSourcecastStatus = createAction(
7581
SET_SOURCECAST_PLAYBACK_STATUS,
7682
(playbackStatus: PlaybackStatus, workspaceLocation: WorkspaceLocation) => ({

0 commit comments

Comments
 (0)