Skip to content

Commit 8a9012c

Browse files
authored
853-remove-student-task (#585)
## Status - Closes RaspberryPiFoundation/digital-editor-issues#853 ## What's changed? - Adds a service and a task that utilises it to facilitate removing students via either a csv or comma seperated list. ## Steps to perform after deploying to production N/A
1 parent 2dc8b7b commit 8a9012c

18 files changed

+472
-279
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
// Features to add to the dev container. More info: https://containers.dev/features.
2323
"features": {
24-
"ghcr.io/devcontainers-contrib/features/zsh-plugins:0": {
24+
"ghcr.io/devcontainers-extra/features/zsh-plugins:0": {
2525
"omzPlugins": "git docker-compose macos zsh-autosuggestions yarn fzf-zsh-plugin asdf zsh-nvm"
2626
},
2727
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}

.rubocop.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
---
2-
require:
3-
- rubocop-graphql
42
plugins:
53
- rubocop-rails
64
- rubocop-capybara
75
- rubocop-performance
86
- rubocop-rspec_rails
97
- rubocop-factory_bot
8+
- rubocop-graphql
109
inherit_from:
1110
- https://raspberrypifoundation.github.io/digital-engineering/configs/rubocop-base.yml
1211
- https://raspberrypifoundation.github.io/digital-engineering/configs/rubocop-rails.yml
@@ -62,3 +61,7 @@ Style/SafeNavigationChainLength:
6261

6362
Rails/EnvLocal:
6463
Enabled: false
64+
65+
Rails/Exit:
66+
Exclude:
67+
- "spec/rails_helper.rb"

.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
}

Gemfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,8 @@ end
6262

6363
group :development do
6464
gem 'rails-erd'
65-
gem 'ruby-lsp', '~> 0.17.7'
66-
gem 'ruby-lsp-rails'
67-
gem 'ruby-lsp-rspec'
65+
gem 'ruby-lsp', require: false
66+
gem 'ruby-lsp-rspec', '~> 0.1.27', require: false
6867
end
6968

7069
group :test do

0 commit comments

Comments
 (0)