-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from nimblehq/release/2.3.0
Release - 2.3.0
- Loading branch information
Showing
12 changed files
with
100 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: "Bug Report" | ||
about: "You found something that is not working. Report it so that it can be fixed. 👷" | ||
title: "Fix: " | ||
labels: "type : bug" | ||
--- | ||
|
||
## Issue | ||
|
||
Describe the issue you are facing. Show us the implementation: screenshots, GIF, etc. | ||
|
||
## Expected | ||
|
||
Describe what should be the correct behavior. | ||
|
||
## Steps to reproduce | ||
|
||
1. | ||
2. | ||
3. |
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 @@ | ||
--- | ||
name: "Chore" | ||
about: "Open a chore issue for a minor update." | ||
title: "Update " | ||
labels: "type : chore" | ||
--- | ||
|
||
## Why | ||
|
||
Describe the details of the update and why it's needed. | ||
|
||
## Who Benefits? | ||
|
||
Describe who will be the beneficiaries e.g. everyone, specific chapters, clients... |
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 @@ | ||
--- | ||
name: "Feature" | ||
about: "Open a feature issue to add new functionalities." | ||
title: "Add " | ||
labels: "type : feature" | ||
--- | ||
|
||
## Why | ||
|
||
Describe the big picture of the feature and why it's needed. | ||
|
||
## Who Benefits? | ||
|
||
Describe who will be the beneficiaries e.g. everyone, specific chapters, clients... |
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
## What happened | ||
Describe the big picture of your changes here to communicate to the team why we should accept this pull request. | ||
Resolves https://github.com/nimblehq/nimble-survey-web/issues/?? | ||
|
||
|
||
## Insight | ||
Describe in details how to test the changes. Referenced documentation are welcome as well. | ||
|
||
## What happened 👀 | ||
|
||
## Proof Of Work | ||
Show us the implementation: screenshots, gif, etc. | ||
|
||
Provide a description of the **changes** this pull request brings to the codebase. Additionally, when the pull request is still being worked on, a checklist of the planned changes is welcome to track progress. | ||
|
||
## Insight 📝 | ||
|
||
Describe in detail why this solution is the most appropriate, which solution you tried but did not go with, and how to test the changes. References to relevant documentation are welcome as well. | ||
|
||
## Proof Of Work 📹 | ||
|
||
Show us the implementation: screenshots, GIFs, etc. |
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,15 @@ | ||
https://github.com/nimblehq/react-templates/milestone/{ID}?closed=1 | ||
|
||
## Features | ||
|
||
Provide the Pull Request IDs in the section for each type (feature, chore, and bug), e.g. | ||
|
||
- #1234 | ||
|
||
## Chores | ||
|
||
- Same structure as in ## Feature | ||
|
||
## Bugs | ||
|
||
- Same structure as in ## Feature |
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.17.0 |
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,2 @@ | ||
nodejs 14.17.0 | ||
ruby 2.7.1 |
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
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 |
---|---|---|
@@ -1,17 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
class SurveySerializer < ApplicationSerializer | ||
attributes :title, | ||
:description, | ||
:thank_email_above_threshold, | ||
:thank_email_below_threshold, | ||
:is_active, | ||
:cover_image_url, | ||
:created_at, | ||
:active_at, | ||
:inactive_at | ||
|
||
attribute :survey_type, &:type | ||
|
||
class SurveySerializer < SurveySimpleSerializer | ||
has_many :questions | ||
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,15 @@ | ||
# frozen_string_literal: true | ||
|
||
class SurveySimpleSerializer < ApplicationSerializer | ||
attributes :title, | ||
:description, | ||
:thank_email_above_threshold, | ||
:thank_email_below_threshold, | ||
:is_active, | ||
:cover_image_url, | ||
:created_at, | ||
:active_at, | ||
:inactive_at | ||
|
||
attribute :survey_type, &:type | ||
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 |
---|---|---|
|
@@ -107,8 +107,7 @@ | |
"required": [ | ||
"id", | ||
"type", | ||
"attributes", | ||
"relationships" | ||
"attributes" | ||
] | ||
} | ||
}, | ||
|