-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
65 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Typelizer digest 1002a651beda81fd3d91636e80542552 | ||
// | ||
// DO NOT MODIFY: This file was automatically generated by Typelizer. | ||
import type {AlbaPost} from '@/types' | ||
|
||
type AlbaUserEmptyNested = { | ||
id: number; | ||
username: string | null; | ||
posts?: Array<AlbaPost>; | ||
avatar: unknown; | ||
typed_avatar: string | null; | ||
} | ||
|
||
export default AlbaUserEmptyNested; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Typelizer digest 8c962041f6d8142284309a7a7695ccff | ||
// | ||
// DO NOT MODIFY: This file was automatically generated by Typelizer. | ||
import type {AmsPost} from '@/types' | ||
|
||
type AmsUserEmptyNested = { | ||
id: number; | ||
username: string | null; | ||
avatar: unknown; | ||
typed_avatar: string | null; | ||
posts?: Array<AmsPost>; | ||
} | ||
|
||
export default AmsUserEmptyNested; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Typelizer digest 792747cc9a6687f61568633186ee265d | ||
// | ||
// DO NOT MODIFY: This file was automatically generated by Typelizer. | ||
import type {OjSerializersPost} from '@/types' | ||
|
||
type OjSerializersUserEmptyNested = { | ||
id: number; | ||
username: string | null; | ||
posts?: Array<OjSerializersPost>; | ||
avatar: unknown; | ||
typed_avatar: string | null; | ||
} | ||
|
||
export default OjSerializersUserEmptyNested; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
spec/app/app/serializers/alba/user/empty_nested_serializer.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module Alba | ||
module User | ||
class EmptyNestedSerializer < AuthorSerializer | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module Ams | ||
module User | ||
class EmptyNestedSerializer < AuthorSerializer | ||
end | ||
end | ||
end |
6 changes: 6 additions & 0 deletions
6
spec/app/app/serializers/oj_serializers/user/empty_nested_serializer.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module OjSerializers | ||
module User | ||
class EmptyNestedSerializer < AuthorSerializer | ||
end | ||
end | ||
end |