Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
Redmine-Polls
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Vernier
Redmine-Polls
Commits
0590ae16
Commit
0590ae16
authored
Jun 30, 2013
by
Michael Vernier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial polls controller created by redmine_plugin_controller
parent
2c7f9e18
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
0 deletions
+22
-0
app/controllers/polls_controller.rb
app/controllers/polls_controller.rb
+10
-0
app/helpers/polls_helper.rb
app/helpers/polls_helper.rb
+2
-0
app/views/polls/index.html.erb
app/views/polls/index.html.erb
+1
-0
app/views/polls/vote.html.erb
app/views/polls/vote.html.erb
+1
-0
test/functional/polls_controller_test.rb
test/functional/polls_controller_test.rb
+8
-0
No files found.
app/controllers/polls_controller.rb
0 → 100644
View file @
0590ae16
class
PollsController
<
ApplicationController
unloadable
def
index
end
def
vote
end
end
app/helpers/polls_helper.rb
0 → 100644
View file @
0590ae16
module
PollsHelper
end
app/views/polls/index.html.erb
0 → 100644
View file @
0590ae16
<h2>
PollsController#index
</h2>
app/views/polls/vote.html.erb
0 → 100644
View file @
0590ae16
<h2>
PollsController#vote
</h2>
test/functional/polls_controller_test.rb
0 → 100644
View file @
0590ae16
require
File
.
expand_path
(
'../../test_helper'
,
__FILE__
)
class
PollsControllerTest
<
ActionController
::
TestCase
# Replace this with your real tests.
def
test_truth
assert
true
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment