summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/assets/images/mastodon.pngbin0 -> 477 bytes
-rw-r--r--app/assets/images/tor.pngbin0 -> 581 bytes
-rw-r--r--app/views/layouts/_footer.html.erb8
-rw-r--r--app/views/statics/donate.html.erb1
-rw-r--r--db/schema.rb1
-rw-r--r--db/seeds.rb1
6 files changed, 8 insertions, 3 deletions
diff --git a/app/assets/images/mastodon.png b/app/assets/images/mastodon.png
new file mode 100644
index 0000000..a4305d9
--- /dev/null
+++ b/app/assets/images/mastodon.png
Binary files differ
diff --git a/app/assets/images/tor.png b/app/assets/images/tor.png
new file mode 100644
index 0000000..47a4a16
--- /dev/null
+++ b/app/assets/images/tor.png
Binary files differ
diff --git a/app/views/layouts/_footer.html.erb b/app/views/layouts/_footer.html.erb
index 930eb26..cc2b2fd 100644
--- a/app/views/layouts/_footer.html.erb
+++ b/app/views/layouts/_footer.html.erb
@@ -13,6 +13,12 @@
<% end %> |
<%= link_to "https://twitter.com/RedstonerServer", title: "Redstoner on Twitter" do %>
Twitter <%= image_tag("twitter.png") %>
+ <% end %> |
+ <%= link_to "https://mstdn.io/@RedstonerServer", title: "Redstoner on Mastodon" do %>
+ Mastodon <%= image_tag("mastodon.png") %>
+ <% end %> |
+ <%= link_to "http://rdstnr4biap5nao2.onion", title: "Redstoner over Tor" do %>
+ Onion Service <%= image_tag("tor.png") %>
<% end %>
<% if current_user %>
| <%= link_to "/slack/?" + {mail: current_user.try(:email)}.to_param do %>
@@ -20,4 +26,4 @@
<% end %>
<% end %>
</div>
-</div> \ No newline at end of file
+</div>
diff --git a/app/views/statics/donate.html.erb b/app/views/statics/donate.html.erb
index 8f82cde..c304917 100644
--- a/app/views/statics/donate.html.erb
+++ b/app/views/statics/donate.html.erb
@@ -1,3 +1,4 @@
+<% title "Donate" %>
<h1>Donate</h1>
<p>Running a server is really stressful and requires a lot of work.<br>
diff --git a/db/schema.rb b/db/schema.rb
index 91cfe91..183a432 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -135,7 +135,6 @@ ActiveRecord::Schema.define(version: 20171013001146) do
t.text "about", limit: 65535
t.string "last_ip", limit: 255
t.string "skype", limit: 255
- t.boolean "skype_public", default: false
t.string "youtube", limit: 255
t.string "youtube_channelname", limit: 255
t.string "twitter", limit: 255
diff --git a/db/seeds.rb b/db/seeds.rb
index 926d7b2..f6b731f 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -33,7 +33,6 @@ deleted_user = User.create!(
role: Role.get(:disabled),
badge: Badge.get(:none),
skype: "echo123",
- skype_public: true,
last_ip: "0.0.0.0",
confirmed: true,
last_seen: Time.utc(0).to_datetime,