Merge pull request #248 from openHPI/improve_groups

Improve groups with a view and always create a group
This commit is contained in:
rteusner
2018-12-19 13:57:41 +01:00
committed by GitHub
14 changed files with 173 additions and 11 deletions

View File

@@ -101,6 +101,12 @@ de:
files: Dateien
score: Punktzahl
user: Autor
study_group:
name: Name
external_id: Externe ID
consumer: Konsument
members: Mitglieder
member_count: Anzahl der Mitglieder
tag:
name: Name
usage: Verwendet
@@ -181,6 +187,9 @@ de:
submission:
one: Abgabe
other: Abgaben
study_group:
one: Lerngruppe
other: Lerngruppen
tag:
one: Tag
other: Tags

View File

@@ -101,6 +101,12 @@ en:
files: Files
score: Score
user: Author
study_group:
name: Name
external_id: External ID
consumer: Consumer
members: Members
member_count: Member Count
tag:
name: Name
usage: Used
@@ -181,6 +187,9 @@ en:
submission:
one: Submission
other: Submissions
study_group:
one: Study Group
other: Study Groups
tag:
one: Tag
other: Tags

View File

@@ -145,6 +145,8 @@ Rails.application.routes.draw do
end
end
resources :study_groups, only: [:index, :show, :edit, :destroy, :update]
resources :events, only: [:create]
post "/evaluate", to: 'remote_evaluation#evaluate', via: [:post]