Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rescheduled 🗓️
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
c3lingo
rescheduled 🗓️
Commits
3092e1ee
Unverified
Commit
3092e1ee
authored
3 months ago
by
Felix Eckhofer
Browse files
Options
Downloads
Patches
Plain Diff
Remove some unnecessary code
parent
c7b773f6
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/controllers/assignments_controller.rb
+0
-2
0 additions, 2 deletions
app/controllers/assignments_controller.rb
app/jobs/pretalx/import_job.rb
+0
-1
0 additions, 1 deletion
app/jobs/pretalx/import_job.rb
app/models/assignment.rb
+0
-2
0 additions, 2 deletions
app/models/assignment.rb
with
0 additions
and
5 deletions
app/controllers/assignments_controller.rb
+
0
−
2
View file @
3092e1ee
...
...
@@ -28,7 +28,6 @@ class AssignmentsController < ApplicationController
if
@assignment
.
save
Rails
.
logger
.
debug
(
"Saved assignment
#{
@assignment
.
inspect
}
"
)
@session
=
Session
.
find_by
(
ref_id:
params
[
:session_ref_id
])
Turbo
::
StreamsChannel
.
broadcast_replace_to
(
@session
.
conference
,
target:
helpers
.
dom_id
(
@session
),
...
...
@@ -54,7 +53,6 @@ class AssignmentsController < ApplicationController
@session
=
@assignment
.
session
if
@assignment
&
.
destroy
@session
=
@assignment
.
session
Rails
.
logger
.
debug
(
"destroyed assignment"
)
Turbo
::
StreamsChannel
.
broadcast_replace_later_to
(
@session
.
conference
,
...
...
This diff is collapsed.
Click to expand it.
app/jobs/pretalx/import_job.rb
+
0
−
1
View file @
3092e1ee
...
...
@@ -23,7 +23,6 @@ module Pretalx
end
schedule
[
'schedule'
][
'conference'
][
'days'
].
each
do
|
day_data
|
day_data
[
'rooms'
].
each
do
|
stage_name
,
stage_data
|
print
stage_name
+
"
\n
=====================
\n
"
stage
=
stages
[
stage_name
]
stage_data
.
each
do
|
session_data
|
Session
.
find_or_initialize_by
(
conference
:,
ref_id:
session_data
[
'guid'
]).
tap
do
|
session
|
...
...
This diff is collapsed.
Click to expand it.
app/models/assignment.rb
+
0
−
2
View file @
3092e1ee
...
...
@@ -39,8 +39,6 @@ class Assignment < ApplicationRecord
end
end
private
def
notify_assignment_created
ActiveSupport
::
Notifications
.
instrument
(
"assignment.created"
,
record:
self
)
end
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment