Revert to version 0e59bfc
This commit is contained in:
parent
f6001e94ae
commit
b8a0d537ca
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,8 +1,3 @@
|
||||
node_modules/
|
||||
*/node_modules/
|
||||
*/build/
|
||||
|
||||
**/node_modules/
|
||||
**/build/
|
||||
.DS_Store
|
||||
.env
|
||||
File diff suppressed because one or more lines are too long
@ -9,8 +9,6 @@ const Tasks = db.tasks;
|
||||
|
||||
const Ahaconsulting = db.ahaconsulting;
|
||||
|
||||
const Statuses = db.statuses;
|
||||
|
||||
const CategoriesData = [
|
||||
{
|
||||
name: 'Project Management',
|
||||
@ -61,7 +59,7 @@ const CommitmentsData = [
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
status: 'inprogress',
|
||||
status: 'notstarted',
|
||||
|
||||
progress_comments: '',
|
||||
|
||||
@ -83,7 +81,7 @@ const CommitmentsData = [
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
status: 'notstarted',
|
||||
status: 'completed',
|
||||
|
||||
progress_comments: '',
|
||||
|
||||
@ -105,7 +103,7 @@ const TasksData = [
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
status: 'inprogress',
|
||||
status: 'completed',
|
||||
|
||||
progress_comments: '',
|
||||
|
||||
@ -113,7 +111,7 @@ const TasksData = [
|
||||
|
||||
last_edit_date: new Date('2023-10-01T10:00:00Z'),
|
||||
|
||||
is_commitment: true,
|
||||
is_commitment: false,
|
||||
},
|
||||
|
||||
{
|
||||
@ -127,7 +125,7 @@ const TasksData = [
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
status: 'notstarted',
|
||||
status: 'inprogress',
|
||||
|
||||
progress_comments: 'Initial sketches completed.',
|
||||
|
||||
@ -135,7 +133,7 @@ const TasksData = [
|
||||
|
||||
last_edit_date: new Date('2023-10-05T12:00:00Z'),
|
||||
|
||||
is_commitment: true,
|
||||
is_commitment: false,
|
||||
},
|
||||
|
||||
{
|
||||
@ -149,7 +147,7 @@ const TasksData = [
|
||||
|
||||
// type code here for "relation_one" field
|
||||
|
||||
status: 'notstarted',
|
||||
status: 'completed',
|
||||
|
||||
progress_comments: '',
|
||||
|
||||
@ -163,32 +161,6 @@ const TasksData = [
|
||||
|
||||
const AhaconsultingData = [{}, {}, {}];
|
||||
|
||||
const StatusesData = [
|
||||
{
|
||||
name: 'Isaac Newton',
|
||||
|
||||
label: 'Neils Bohr',
|
||||
|
||||
color: 'Joseph J. Thomson',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'Louis Victor de Broglie',
|
||||
|
||||
label: 'Erwin Schrodinger',
|
||||
|
||||
color: 'Noam Chomsky',
|
||||
},
|
||||
|
||||
{
|
||||
name: 'Christiaan Huygens',
|
||||
|
||||
label: 'Heike Kamerlingh Onnes',
|
||||
|
||||
color: 'Dmitri Mendeleev',
|
||||
},
|
||||
];
|
||||
|
||||
// Similar logic for "relation_many"
|
||||
|
||||
async function associateCommitmentWithDelegation() {
|
||||
@ -341,8 +313,6 @@ module.exports = {
|
||||
|
||||
await Ahaconsulting.bulkCreate(AhaconsultingData);
|
||||
|
||||
await Statuses.bulkCreate(StatusesData);
|
||||
|
||||
await Promise.all([
|
||||
// Similar logic for "relation_many"
|
||||
|
||||
@ -364,7 +334,5 @@ module.exports = {
|
||||
await queryInterface.bulkDelete('tasks', null, {});
|
||||
|
||||
await queryInterface.bulkDelete('ahaconsulting', null, {});
|
||||
|
||||
await queryInterface.bulkDelete('statuses', null, {});
|
||||
},
|
||||
};
|
||||
|
||||
@ -1 +0,0 @@
|
||||
{}
|
||||
@ -19,7 +19,7 @@ export default function WebSiteFooter({ projectName }: WebSiteFooterProps) {
|
||||
|
||||
const style = FooterStyle.WITH_PAGES;
|
||||
|
||||
const design = FooterDesigns.DESIGN_DIVERSITY;
|
||||
const design = FooterDesigns.DEFAULT_DESIGN;
|
||||
|
||||
return (
|
||||
<div
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user