Skip to content

Instantly share code, notes, and snippets.

@bumble-bee-chuna
Created August 2, 2017 16:27
Show Gist options
  • Save bumble-bee-chuna/4b2ae58502d33be1e0be4020e28226a2 to your computer and use it in GitHub Desktop.
Save bumble-bee-chuna/4b2ae58502d33be1e0be4020e28226a2 to your computer and use it in GitHub Desktop.
class IssuesController < ApplicationController
before_action :get_jira_client
def index
@issues = @jira_client.Issue.all
end
def show
@issue = @jira_client.Issue.find(params[:id])
end
end
<% @issues.each do |i| %>
<div style="border: 1px solid #000;">
<%= i.id %><br />
<%= i.summary %><br />
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment