Sha256: d4c2b48424fe74e7d943ac46699c8b1c87b4437c0d07a714f8b7e385d0b075bc

Contents?: true

Size: 1.05 KB

Versions: 7

Compression:

Stored size: 1.05 KB

Contents

<h3><%= flash[:notice] %></h3>
<h1>Listing apis</h1><br />
<% @apis.each do |api| %>
    <h3>API Name : <%= api.name %></h3>
    <pre class="prettyprint language-html prettyprinted" data-type="get" style="">
      <code>
        <span class="pln"><strong>URL: </strong><%= api.url %></span><br />
        <span class="pln"><strong>Version: </strong><%= api.version %></span><br />
        <span class="pln"><strong>Request: </strong><%= api.request_type %></span><br />
        <span class="pln"><strong>API Group: </strong><%= api.api_group %></span><br />
        <span class="pln link"><%= link_to 'View Details', project_api_path(@project, api) %> | <%= link_to 'Edit', edit_project_api_path(@project, api) %> | <%= link_to 'Destroy', project_api_path(@project, api), method: :delete, data: { confirm: 'Are you sure?' } %></span>
      </code>
    </pre>
   
<% end %>
<br />
<%= paginate @apis %>

<%= link_to 'New Api', new_project_api_path %>|
<%= link_to 'Generate Api Doc', project_generate_doc_path %>|
<%= link_to 'All Projects', projects_path%>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rails_api_doc-0.0.8 app/views/rails_api_doc/apis/index.html.erb
rails_api_doc-0.0.7 app/views/rails_api_doc/apis/index.html.erb
rails_api_doc-0.0.6 app/views/rails_api_doc/apis/index.html.erb
rails_api_doc-0.0.5 app/views/rails_api_doc/apis/index.html.erb
rails_api_doc-0.0.4 app/views/rails_api_doc/apis/index.html.erb
rails_api_doc-0.0.3 app/views/rails_api_doc/apis/index.html.erb
rails_api_doc-0.0.2 app/views/rails_api_doc/apis/index.html.erb