Skip to content
Snippets Groups Projects
Verified Commit 14b28b76 authored by Felix Eckhofer's avatar Felix Eckhofer :man_dancing:
Browse files

Remove unused files

parent 26c70d61
No related branches found
No related tags found
No related merge requests found
Pipeline #36944 passed
Showing
with 0 additions and 97 deletions
module AssignmentsHelper
end
module ConferencesHelper
end
module SessionsHelper
end
module SpeakersHelper
end
module UsersHelper
end
import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
connect() {
this.element.textContent = "Hello World!"
}
}
class ApplicationMailer < ActionMailer::Base
default from: "from@example.com"
layout "mailer"
end
<div>
<h1 class="font-bold text-4xl dark:text-red-500">Assignments#show</h1>
<p>Find me in app/views/assignments/show.html.erb</p>
</div>
<div>
<h1 class="font-bold text-4xl dark:text-red-500">FiledropFiles#download</h1>
<p>Find me in app/views/filedrop_files/download.html.erb</p>
</div>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
/* Email styles need to be inline */
</style>
</head>
<body>
<%= yield %>
</body>
</html>
<%= yield %>
<h1>Sessions#index</h1>
<p>Find me in app/views/sessions/index.html.erb</p>
<div>
<h1 class="font-bold text-4xl mb-8 dark:text-red-500">Choose User</h1>
<ul class="flex flex-wrap gap-2">
<% @users.each do |user| %>
<li>
<%= button_to user.name, login_path(user_id: user.id), data: { turbo_method: :post }, class: "p-2 border hover:bg-slate-100 hover:shadow" %>
</li>
<% end %>
</ul>
</div>
<div>
<h1 class="font-bold text-4xl">Users#logout</h1>
<p>Find me in app/views/users/logout.html.erb</p>
</div>
<div>
<h1 class="font-bold text-4xl dark:text-red-500">Profile</h1>
<%= form_with(model: @user, url: update_profile_path, local: true) do |form| %>
<div class="field">
<%= form.label :name %>
<%= form.text_field :name %>
</div>
<div class="field">
<%= form.label :email %>
<%= form.text_field :email %>
</div>
<div class="field">
<%= form.label :password %>
<%= form.password_field :password %>
</div>
<div class="field">
<%= form.label :avatar_color %>
<%= form.color_field :avatar_color %>
</div>
<div class="field">
<%= form.label :telegram_username %>
<%= form.text_field :telegram_username %>
</div>
<div class="actions">
<%= form.submit "Update Profile" %>
</div>
<% end %>
</div>
<div>
<h1 class="font-bold text-4xl">Users#update</h1>
<p>Find me in app/views/users/update.html.erb</p>
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment