diff --git a/.github/ISSUE_TEMPLATE/feature.yaml b/.github/ISSUE_TEMPLATE/feature.yaml deleted file mode 100644 index 0763f2b..0000000 --- a/.github/ISSUE_TEMPLATE/feature.yaml +++ /dev/null @@ -1,37 +0,0 @@ -name: Feature -description: Изменение ломающее обратную совместимость -labels: ['enhancement'] -assignees: - - TorinAsakura -body: - - type: input - id: motivation - attributes: - label: С чем связан запрос на фичу? - placeholder: В случае с @Injectable мы должны иметь возможность, также, пробрасывать события с eventbus через provider - validations: - required: true - - type: textarea - id: poc - attributes: - label: Расскажите как вы это себе видите - placeholder: | - Например: - ```typescript - @Injectable({ - provider: "IntlProvider" - }) - - export class IntlService { - getIntl(object){ - return object.string - } - } - ``` - validations: - required: true - - type: textarea - id: examples - attributes: - label: Приложите пример реализаций - placeholder: Просто оставьте ссылку на репу, статью, gist, любой другой источник откуда почерпнули идею