This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Umbraco.Cms.Core.Composing; | |
using Umbraco.Cms.Core.DependencyInjection; | |
using Umbraco.Cms.Core.Events; | |
using Umbraco.Cms.Core.Services; | |
using uSync.BackOffice; | |
using uSync.Core; | |
using static Umbraco.Cms.Core.Constants; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using uSync.Migrations.Core; | |
using uSync.Migrations.Core.Handlers; | |
using uSync.Migrations.Core.Legacy; | |
using uSync.Migrations.Core.Migrators; | |
using uSync.Migrations.Core.Plans; | |
using uSync.Migrations.Core.Plans.Models; | |
using uSync.Migrations.Migrators.Core; | |
namespace MyMigrations; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.AspNetCore.Authorization; | |
using Umbraco.Cms.Core; | |
using Umbraco.Cms.Core.Composing; | |
using Umbraco.Cms.Core.Events; | |
using Umbraco.Cms.Core.Sections; | |
using Umbraco.Cms.Core.Services; | |
using Umbraco.Cms.Core.Trees; | |
using Umbraco.Cms.Web.BackOffice.Trees; | |
using Umbraco.Cms.Web.Common.Attributes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Hangfire; | |
using Hangfire.Server; | |
using Umbraco.Cms.Core.Composing; | |
using uSync.Expansions.Core.Restore.Services; | |
namespace uSync.Hangfire; | |
public class DailyRestoreComposer : IComposer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Web.Http; | |
using Jumoo.TranslationManager.Core.Controllers; | |
using Newtonsoft.Json; | |
using Umbraco.Core.Services; | |
using Umbraco.Web.Mvc; | |
using Umbraco.Web.WebApi; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@using Umbraco.Cms.Web.Common.PublishedModels; | |
@using Umbraco.Cms.Core.Models; | |
@using Umbraco.Cms.Core.Models.Blocks; | |
@inherits Umbraco.Cms.Web.Common.Views.UmbracoViewPage | |
@{ | |
Layout = null; | |
} | |
<html> | |
<head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Jumoo.TranslationManager.Core.Services; | |
using Umbraco.Core; | |
using Umbraco.Core.Composing; | |
using Umbraco.Core.Services; | |
namespace ExampleCode | |
{ | |
// | |
// Example Code : CopyNodeName on Approval |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.AspNetCore.Builder; | |
using Microsoft.AspNetCore.Http; | |
using Microsoft.Extensions.Configuration; | |
using Microsoft.Extensions.DependencyInjection; | |
using Microsoft.Extensions.Logging; | |
using System.IO; | |
using System.Threading.Tasks; | |
using Umbraco.Cms.Core.Composing; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Newtonsoft.Json; | |
using Newtonsoft.Json.Linq; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Umbraco.Core; | |
using Umbraco.Core.Logging; | |
using Umbraco.Core.Models; |
NewerOlder