neet/refined-itsukara-link

View on GitHub

Showing 278 of 278 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

export class ListPerformers {
  constructor(
    @inject(TYPES.PerformerQueryService)
    private readonly _performerQueryService: IPerformerQueryService,
  ) {}
packages/@neet/vschedule-api/src/app/organization/list-organizations.ts on lines 13..26

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 108.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Function Imprint has 90 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const Imprint = (/* props: ImprintProps */): JSX.Element => {
  // const {} = props;

  const [changeLog, setChangeLog] = useState(false);

    Function Streams has 89 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    const Streams = (props: StreamsProps): JSX.Element | null => {
      const { data: streams, isValidating } = useAspidaSWR(client.rest.v1.streams, {
        query: { since, until },
      });
    
    
    Severity: Major
    Found in packages/@neet/vschedule-client/src/pages/streams.tsx - About 3 hrs to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

                  <dl className="sr-only">
                    <dt>開始時刻</dt>
                    <dd>{dayjs(stream.startedAt).format('LLL')}</dd>
      
                    <dt>終了時刻</dt>
      packages/@neet/vschedule-client/src/components/app/EventMarker/EventMarker.tsx on lines 107..113

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 105.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

                  <dl className="sr-only">
                    <dt>開始時刻</dt>
                    <dd>{dayjs(event.start_date).format('LLL')}</dd>
      
                    <dt>終了時刻</dt>
      packages/@neet/vschedule-client/src/components/app/StreamMarker/StreamMarker.tsx on lines 108..114

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 105.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 6 locations. Consider refactoring.
      Open

      describe('PerformerName', () => {
        it('constructs', () => {
          const description = new PerformerName('hello');
          expect(description.value).toBe('hello');
        });
      packages/@neet/vschedule-api/src/domain/entities/channel/channel-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/channel/channel-name.spec.ts on lines 3..14
      packages/@neet/vschedule-api/src/domain/entities/organization/organization-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/organization/organization-name.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/performer/performer-description.spec.ts on lines 6..17

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 104.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 6 locations. Consider refactoring.
      Open

      describe('ChannelName', () => {
        it('constructs', () => {
          const description = new ChannelName('hello');
          expect(description.value).toBe('hello');
        });
      packages/@neet/vschedule-api/src/domain/entities/channel/channel-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/organization/organization-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/organization/organization-name.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/performer/performer-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/performer/performer-name.spec.ts on lines 3..14

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 104.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 6 locations. Consider refactoring.
      Open

      describe('OrganizationDescription', () => {
        it('constructs', () => {
          const description = new OrganizationDescription('hello');
          expect(description.value).toBe('hello');
        });
      packages/@neet/vschedule-api/src/domain/entities/channel/channel-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/channel/channel-name.spec.ts on lines 3..14
      packages/@neet/vschedule-api/src/domain/entities/organization/organization-name.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/performer/performer-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/performer/performer-name.spec.ts on lines 3..14

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 104.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 6 locations. Consider refactoring.
      Open

      describe('ChannelDescription', () => {
        it('constructs', () => {
          const description = new ChannelDescription('hello');
          expect(description.value).toBe('hello');
        });
      packages/@neet/vschedule-api/src/domain/entities/channel/channel-name.spec.ts on lines 3..14
      packages/@neet/vschedule-api/src/domain/entities/organization/organization-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/organization/organization-name.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/performer/performer-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/performer/performer-name.spec.ts on lines 3..14

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 104.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 6 locations. Consider refactoring.
      Open

      describe('PerformerDescription', () => {
        it('constructs', () => {
          const description = new PerformerDescription('hello');
          expect(description.value).toBe('hello');
        });
      packages/@neet/vschedule-api/src/domain/entities/channel/channel-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/channel/channel-name.spec.ts on lines 3..14
      packages/@neet/vschedule-api/src/domain/entities/organization/organization-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/organization/organization-name.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/performer/performer-name.spec.ts on lines 3..14

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 104.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 6 locations. Consider refactoring.
      Open

      describe('OrganizationName', () => {
        it('constructs', () => {
          const description = new OrganizationName('hello');
          expect(description.value).toBe('hello');
        });
      packages/@neet/vschedule-api/src/domain/entities/channel/channel-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/channel/channel-name.spec.ts on lines 3..14
      packages/@neet/vschedule-api/src/domain/entities/organization/organization-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/performer/performer-description.spec.ts on lines 6..17
      packages/@neet/vschedule-api/src/domain/entities/performer/performer-name.spec.ts on lines 3..14

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 104.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Function Events has 86 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      const Events = (props: EventsProps): JSX.Element | null => {
        const { events, loading } = useEvents();
        const upcomingEvents = useUpcomingEvents();
        const genreQuery = useGenreQueryParam();
        const [genre, setGenre] = useState(genreQuery ?? GENRE_ALL);
      Severity: Major
      Found in packages/@neet/vschedule-client/src/pages/index.tsx - About 3 hrs to fix

        Similar blocks of code found in 4 locations. Consider refactoring.
        Open

          async findByYoutubeChannelId(
            id: YoutubeChannelId,
          ): Promise<Performer | null> {
            const data = await this._prisma.performer.findFirst({
              where: {
        packages/@neet/vschedule-api/src/adapters/repositories/organization-repository-prisma.ts on lines 85..100
        packages/@neet/vschedule-api/src/adapters/repositories/organization-repository-prisma.ts on lines 123..140
        packages/@neet/vschedule-api/src/adapters/repositories/performer-repository-prisma.ts on lines 102..117

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 103.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 4 locations. Consider refactoring.
        Open

          async findById(id: PerformerId): Promise<Performer | null> {
            const data = await this._prisma.performer.findFirst({
              where: {
                id: id.value,
              },
        packages/@neet/vschedule-api/src/adapters/repositories/organization-repository-prisma.ts on lines 85..100
        packages/@neet/vschedule-api/src/adapters/repositories/organization-repository-prisma.ts on lines 123..140
        packages/@neet/vschedule-api/src/adapters/repositories/performer-repository-prisma.ts on lines 119..136

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 103.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 4 locations. Consider refactoring.
        Open

          async findById(id: OrganizationId): Promise<Organization | null> {
            const data = await this._prisma.organization.findFirst({
              where: {
                id: id.value,
              },
        packages/@neet/vschedule-api/src/adapters/repositories/organization-repository-prisma.ts on lines 123..140
        packages/@neet/vschedule-api/src/adapters/repositories/performer-repository-prisma.ts on lines 102..117
        packages/@neet/vschedule-api/src/adapters/repositories/performer-repository-prisma.ts on lines 119..136

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 103.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 4 locations. Consider refactoring.
        Open

          async findByYoutubeChannelId(
            id: YoutubeChannelId,
          ): Promise<Organization | null> {
            const data = await this._prisma.organization.findFirst({
              where: {
        packages/@neet/vschedule-api/src/adapters/repositories/organization-repository-prisma.ts on lines 85..100
        packages/@neet/vschedule-api/src/adapters/repositories/performer-repository-prisma.ts on lines 102..117
        packages/@neet/vschedule-api/src/adapters/repositories/performer-repository-prisma.ts on lines 119..136

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 103.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Function Banner has 84 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        export const Banner = (): JSX.Element => {
          return (
            <header
              aria-label="ヘッダー"
              className={classNames(
        Severity: Major
        Found in packages/@neet/vschedule-client/src/components/app/Banner/Banner.tsx - About 3 hrs to fix

          Function SpellPure has 83 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          const SpellPure = (props: SpellProps): JSX.Element => {
            const { date, size } = props;
          
            const {
              scale,
          Severity: Major
          Found in packages/@neet/vschedule-client/src/components/ui/Timetable/Spell.tsx - About 3 hrs to fix

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

            describe('MediaAttachmentId', () => {
              it('can be constructed', () => {
                const value = nanoid();
                const id = new MediaAttachmentId(value);
                expect(id.value).toBe(value);
            packages/@neet/vschedule-api/src/domain/entities/performer/performer-id.spec.ts on lines 5..15

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 101.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

            describe('PerformerId', () => {
              it('can be constructed', () => {
                const value = nanoid();
                const id = new PerformerId(value);
                expect(id.value).toBe(value);
            packages/@neet/vschedule-api/src/domain/entities/media-attachment/media-attachment-id.spec.ts on lines 5..15

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 101.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Severity
            Category
            Status
            Source
            Language