diff --git a/app/controllers/admin/communication/website/posts_controller.rb b/app/controllers/admin/communication/website/posts_controller.rb
index f4ade6c8ae8e6d8e5685735abe03c1eb7f71cf27..8e9f6891597e490fbc9bd05d8219b9f93d0c5551 100644
--- a/app/controllers/admin/communication/website/posts_controller.rb
+++ b/app/controllers/admin/communication/website/posts_controller.rb
@@ -57,7 +57,7 @@ class Admin::Communication::Website::PostsController < Admin::Communication::Web
   def post_params
     params.require(:communication_website_post)
           .permit(
-            :university_id, :website_id, :title, :description, :text, :text_new, 
+            :university_id, :website_id, :title, :description, :text, :text_wysiwyg, 
             :published, :published_at, :featured_image, :featured_image_delete,
             :featured_image_infos, :featured_image_alt, :slug, :pinned,
             :author_id, category_ids: []
diff --git a/app/models/communication/website/post.rb b/app/models/communication/website/post.rb
index 7794c68d3837cb9bff20bd77ab577a854774c755..b861b3ebc60aeda2746c8f70dffc9f9cc4aa0ff0 100644
--- a/app/models/communication/website/post.rb
+++ b/app/models/communication/website/post.rb
@@ -66,6 +66,16 @@ class Communication::Website::Post < ApplicationRecord
   scope :ordered, -> { order(published_at: :desc, created_at: :desc) }
   scope :recent, -> { order(published_at: :desc).limit(5) }
 
+  def text_summernote
+    # TODO hydrate action-text-attachment
+    self.text
+  end
+
+  def text_summernote=(value)
+    # TODO dehydrate action-text-attachment
+    self.text = value
+  end
+
   def path
     # used in menu_item#static_target
     "/#{published_at.strftime "%Y/%m/%d"}/#{slug}"
diff --git a/app/views/admin/communication/website/posts/_form.html.erb b/app/views/admin/communication/website/posts/_form.html.erb
index 41281bd67e2048a8f040ac13c6dc74b65800682e..722a8a1d61511b2dfc885a6a18c6858be2e7c35b 100644
--- a/app/views/admin/communication/website/posts/_form.html.erb
+++ b/app/views/admin/communication/website/posts/_form.html.erb
@@ -9,7 +9,7 @@
           <%= f.input :title %>
           <%= f.input :description %>
           <%= f.input :text, as: :rich_text_area %>
-          <%= f.input :text_new, as: :summernote %>
+          <%= f.input :text_summernote, as: :summernote %>
         </div>
       </div>
       <div class="card flex-fill w-100">