((exclusive)) | Zammad Addons New
You can inject various elements into Zammad via your package:
A typical Zammad addon requires a specific definition file to appear in the UI and be registered in the system. zammad addons new
# app/models/my_addon_model.rb class MyAddonModel < ApplicationRecord # Custom model logic end You can inject various elements into Zammad via
module MyNewFeature class Engine < ::Rails::Engine isolate_namespace MyNewFeature # Register the addon with Zammad initializer "my_new_feature.register_addon" do |app| # Zammad specific registration logic usually goes here # For example, adding a new channel or ticket hook end zammad addons new