Commit just for you, Ralf :)
This commit is contained in:
@@ -209,6 +209,12 @@ de:
|
||||
start: Mit dem Programmieren beginnen
|
||||
test_count: '<span class="number">%{count}</span> Test-Dateien wurden ausgeführt.'
|
||||
workspace: Arbeitsbereich
|
||||
comment:
|
||||
dialogtitle: Kommentieren Sie diese Zeile!
|
||||
others: Andere Kommentare auf dieser Zeile
|
||||
addyours: Fügen Sie Ihren Kommentar hinzu
|
||||
addComment: Hinzufügen
|
||||
removeAllOnLine: Alle Kommentare auf dieser Zeile löschen
|
||||
index:
|
||||
clone: Duplizieren
|
||||
implement: Implementieren
|
||||
|
@@ -209,6 +209,12 @@ en:
|
||||
start: Start Coding
|
||||
test_count: '<span class="number">%{count}</span> test files have been executed.'
|
||||
workspace: Workspace
|
||||
comment:
|
||||
dialogtitle: Comment on this line!
|
||||
others: Other comments on this line
|
||||
addyours: Add your comment
|
||||
addComment: Add comment
|
||||
removeAllOnLine: Remove all comments on this line
|
||||
index:
|
||||
clone: Duplicate
|
||||
implement: Implement
|
||||
|
@@ -1,6 +1,15 @@
|
||||
FILENAME_REGEXP = /[\w\.]+/ unless Kernel.const_defined?(:FILENAME_REGEXP)
|
||||
|
||||
Rails.application.routes.draw do
|
||||
resources :comments, except: [:destroy] do
|
||||
collection do
|
||||
delete :destroy
|
||||
end
|
||||
end
|
||||
|
||||
delete '/comment_by_id', to: 'comments#destroy_by_id'
|
||||
put '/comments', to: 'comments#update'
|
||||
|
||||
root to: 'application#welcome'
|
||||
|
||||
namespace :admin do
|
||||
|
Reference in New Issue
Block a user