Skip to content

Commit

Permalink
Change later: to TODO:
Browse files Browse the repository at this point in the history
  • Loading branch information
FyreByrd committed Sep 25, 2024
1 parent adad484 commit dd262bf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export async function update(
},
data: productData
});
// later: Are there any other updates that need to be done?
// TODO: Are there any other updates that need to be done?
} catch (e) {
return false;
}
Expand Down
10 changes: 5 additions & 5 deletions source/SIL.AppBuilder.Portal/common/workflow/default-workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const DefaultWorkflow = setup({
(params.level ? params.level === context.adminLevel : true)
);
},
// later: write actual guards. cannot be async, which means no checking DB
// TODO: write actual guards. cannot be async, which means no checking DB
hasAuthors: ({ context }) => {
return true;
},
Expand Down Expand Up @@ -354,7 +354,7 @@ export const DefaultWorkflow = setup({
assign({ instructions: 'waiting', currentState: 'Product Creation' }),
{ type: 'snapAndTasks' },
() => {
//later: hook into build engine
// TODO: hook into build engine
console.log('Creating Product');
}
],
Expand Down Expand Up @@ -558,7 +558,7 @@ export const DefaultWorkflow = setup({
}),
{ type: 'snapAndTasks' },
() => {
//later: hook into build engine
// TODO: hook into build engine
console.log('Building Product');
}
],
Expand Down Expand Up @@ -810,7 +810,7 @@ export const DefaultWorkflow = setup({
actions: [
{ type: 'transit', params: { target: 'Verify and Publish' } },
() => {
//later: connect to backend to email reviewers
// TODO: connect to backend to email reviewers
console.log('Emailing Reviewers');
}
]
Expand All @@ -822,7 +822,7 @@ export const DefaultWorkflow = setup({
assign({ instructions: 'waiting', currentState: 'Product Publish' }),
{ type: 'snapAndTasks' },
() => {
//later: hook into build engine
// TODO: hook into build engine
console.log('Publishing Product');
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
export let active: boolean;
export let descending: boolean;
//later: selecting one of these causes the relative sizes of the table headers to change, which looks really janky. I've tried fixing this, but have been unsuccessful. For now, at least it functions correctly, even if it doesn't look quite right.
// TODO: selecting one of these causes the relative sizes of the table headers to change, which looks really janky. I've tried fixing this, but have been unsuccessful. For now, at least it functions correctly, even if it doesn't look quite right.
</script>

<div class="form-control">
Expand Down

0 comments on commit dd262bf

Please sign in to comment.