Fixes all the notification request specs that were xited. This should help us feel more comfortable making changes to notifications. Also made a small (performance?) improvement by using an already defined variable.
34 lines
846 B
Ruby
34 lines
846 B
Ruby
class Internal::WelcomeController < Internal::ApplicationController
|
||
layout "internal"
|
||
|
||
def index
|
||
@daily_threads = Article.where("title LIKE 'Welcome Thread - %'")
|
||
end
|
||
|
||
def create
|
||
welcome_thread = Article.create(
|
||
body_markdown: welcome_thread_content,
|
||
user: User.dev_account,
|
||
)
|
||
redirect_to welcome_thread.path + "/edit"
|
||
end
|
||
|
||
private
|
||
|
||
def welcome_thread_content
|
||
<<~HEREDOC
|
||
---
|
||
title: Welcome Thread - v0
|
||
published: false
|
||
description: Introduce yourself to the community!
|
||
tags: welcome
|
||
---
|
||
|
||
Hey there! Welcome to dev.to!
|
||
|
||

|
||
|
||
Leave a comment below to introduce yourself to the community!✌️
|
||
HEREDOC
|
||
end
|
||
end
|