Skip to content

Commit

Permalink
fix: Follow Forbole's naming conventions for models [DEV-2491] (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipdjokic authored May 8, 2023
1 parent b5838c7 commit 96d56aa
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MsgCreateDidDoc } from '@/models/msg/cheqd/did/create_did';
import { MsgCreateDidDoc } from '@/models/msg/cheqd/did/msg_create_did';
import Typography from '@mui/material/Typography';
import DID from '@/components/did';
import { Trans } from 'next-i18next';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MsgDeactivateDidDoc } from '@/models/msg/cheqd/did/deactivate_did';
import { MsgDeactivateDidDoc } from '@/models/msg/cheqd/did/msg_deactivate_did';
import Typography from '@mui/material/Typography';
import DID from '@/components/did';
import { Trans } from 'next-i18next';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MsgUpdateDidDoc } from '@/models/msg/cheqd/did/update_did';
import { MsgUpdateDidDoc } from '@/models/msg/cheqd/did/msg_update_did';
import Typography from '@mui/material/Typography';
import DID from '@/components/did';
import { Trans } from 'next-i18next';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MsgCreateResource } from '@/models/msg/cheqd/resource/create_resource';
import { MsgCreateResource } from '@/models/msg/cheqd/resource/msg_create_resource';
import Typography from '@mui/material/Typography';
import Resource from '@/components/resource';
import { Trans } from 'next-i18next';
Expand Down
8 changes: 4 additions & 4 deletions apps/web-cheqd/src/models/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// =========================
// Cheqd
// =========================
export { default as MsgCreateDidDoc } from '@/models/msg/cheqd/did/create_did';
export { default as MsgUpdateDidDoc } from '@/models/msg/cheqd/did/update_did';
export { default as MsgDeactivateDidDoc } from '@/models/msg/cheqd/did/deactivate_did';
export { default as MsgCreateResource } from '@/models/msg/cheqd/resource/create_resource';
export { default as MsgCreateDidDoc } from '@/models/msg/cheqd/did/msg_create_did';
export { default as MsgUpdateDidDoc } from '@/models/msg/cheqd/did/msg_update_did';
export { default as MsgDeactivateDidDoc } from '@/models/msg/cheqd/did/msg_deactivate_did';
export { default as MsgCreateResource } from '@/models/msg/cheqd/resource/msg_create_resource';

export * from 'ui/models';

0 comments on commit 96d56aa

Please sign in to comment.