Introduces comprehensive online booking feature with: - Localization support for booking settings - ViewComponents for booking URL, settings, company info, hours, and preview - Responsive preview with device toggle functionality - Integrated with settings page and translation files Enhances application's online booking configuration interface
14 lines
347 B
C#
14 lines
347 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PlanTempus.Application.Features.OnlineBooking.Components;
|
|
|
|
/// <summary>
|
|
/// ViewComponent for displaying the booking URL with copy and open actions.
|
|
/// </summary>
|
|
public class OnlineBookingUrlViewComponent : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke()
|
|
{
|
|
return View();
|
|
}
|
|
}
|